Skip to content

Commit

Permalink
Merge pull request #1625 from ballerina-platform/disable-test
Browse files Browse the repository at this point in the history
Disable escape identifier test in favour of lang change
  • Loading branch information
TharmiganK authored Mar 21, 2024
2 parents 7a1b4a7 + 8075ed9 commit b8b7f1d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,10 @@ public void testForNonHttpServices() {
Assert.assertTrue(!Files.exists(tempDir.resolve("query_openapi.yaml")));
}

@Test(description = "Given ballerina service has escape character")
// Disabling this test case because of a breaking change in ballerina lang:
// Lang change: https:/ballerina-platform/ballerina-lang/pull/42342
// Tracking issue: https:/ballerina-platform/ballerina-library/issues/6217
@Test(description = "Given ballerina service has escape character", enabled = false)
public void testForRemovingEscapeIdentifier() throws IOException {
Path ballerinaFilePath = RES_DIR.resolve("escape_identifier.bal");
Path tempDir = Files.createTempDirectory("bal-to-openapi-test-out-" + System.nanoTime());
Expand Down

0 comments on commit b8b7f1d

Please sign in to comment.