diff --git a/tests/jballerina-integration-test/src/test/java/org/ballerinalang/test/packaging/LockFileTestCase.java b/tests/jballerina-integration-test/src/test/java/org/ballerinalang/test/packaging/LockFileTestCase.java index 66e7fc0f1ee0..9504e6b83b16 100644 --- a/tests/jballerina-integration-test/src/test/java/org/ballerinalang/test/packaging/LockFileTestCase.java +++ b/tests/jballerina-integration-test/src/test/java/org/ballerinalang/test/packaging/LockFileTestCase.java @@ -155,8 +155,7 @@ public void testBuildAndPushTestProject1() throws BallerinaTestException { * @throws IOException When updating the module names. * @throws BallerinaTestException When running commands. */ - @Test(description = "Test building and running TestProject2", dependsOnMethods = "testBuildAndPushTestProject1", - enabled = false) + @Test(description = "Test building and running TestProject2", dependsOnMethods = "testBuildAndPushTestProject1") public void testBuildTestProject2() throws IOException, BallerinaTestException, InterruptedException { // Replace module names in source file Path fooSayBal = testProj2Path.resolve("src").resolve("foo").resolve("foo_say.bal"); @@ -202,8 +201,7 @@ public void testBuildTestProject2() throws IOException, BallerinaTestException, * @throws IOException When updating the implementation of the project. * @throws BallerinaTestException When running commands. */ - @Test(description = "Test updating TestProject1 and pushing.", dependsOnMethods = "testBuildTestProject2", - enabled = false) + @Test(description = "Test updating TestProject1 and pushing.", dependsOnMethods = "testBuildTestProject2") public void testModifyProj1AndPush() throws IOException, BallerinaTestException { // Update code in module1 Path module2SourceFile = testProj1Path.resolve("src").resolve(module2Name).resolve("say.bal"); @@ -260,8 +258,7 @@ public void testModifyProj1AndPush() throws IOException, BallerinaTestException * * @throws BallerinaTestException When running commands. */ - @Test(description = "Test rebuilding and running TestProject2", dependsOnMethods = "testModifyProj1AndPush", - enabled = false) + @Test(description = "Test rebuilding and running TestProject2", dependsOnMethods = "testModifyProj1AndPush") public void testRebuildTestProj2() throws BallerinaTestException { // Build module String fooBaloFileName = "foo-"