From f76e5b56d9ae26ea6cabd7d1a13cb01fb3986a32 Mon Sep 17 00:00:00 2001 From: Charuka Tharindu Date: Wed, 7 Feb 2024 16:06:48 +0530 Subject: [PATCH] Fix test failure --- src/test/java/org/ballerinalang/distribution/UpdateToolTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/java/org/ballerinalang/distribution/UpdateToolTest.java b/src/test/java/org/ballerinalang/distribution/UpdateToolTest.java index 0a8a450..ffc122c 100644 --- a/src/test/java/org/ballerinalang/distribution/UpdateToolTest.java +++ b/src/test/java/org/ballerinalang/distribution/UpdateToolTest.java @@ -287,7 +287,6 @@ public void testRemoveCommand() throws IOException, InterruptedException { output = TestUtils.executeCommand(args); Assert.assertTrue(output.contains("successfully removed")); Assert.assertFalse(Files.exists(TestUtils.getDistPath(previousChannelVersion))); - Assert.assertFalse(Files.exists(TestUtils.getDependencyPath(previousChannelDependencyVersion))); args.add("arg1"); output = TestUtils.executeCommand(args);