Skip to content

Commit

Permalink
Enable diagram-util tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HindujaB committed Aug 21, 2024
1 parent 1b24be0 commit c8b7e1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
*/
// TODO move this class to a separate Java package. e.g. io.ballerina.projects.platform.jballerina
public enum JvmTarget implements CompilerBackend.TargetPlatform {
JAVA_21("java21"),
JAVA_17("java17"),
JAVA_21("java21"),
JAVA_11("java11");
// TODO need to move java21 to the top when the central issue #2792 is fixed

private final String code;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ public void testRegexSyntax() throws IOException {
}


@Test(description = "Test visible endpoint defined in Class/Service level", enabled = false)
@Test(description = "Test visible endpoint defined in Class/Service level")
public void testClassLevelVisibleEndpoint() throws IOException {
Path inputFile = TestUtil.createTempProject(classEndpoint);

Expand Down Expand Up @@ -762,7 +762,7 @@ public void testClassLevelVisibleEndpoint() throws IOException {
"http", "http", "2.8.0", 4, 4, false, true, true, false);
}

@Test(description = "Test visible endpoint with annotations and access modifiers", enabled = false)
@Test(description = "Test visible endpoint with annotations and access modifiers")
public void testAnnotatedVisibleEndpoint() throws IOException {
Path inputFile = TestUtil.createTempProject(annotatedEndpoint);

Expand Down

0 comments on commit c8b7e1e

Please sign in to comment.