Skip to content

Commit

Permalink
Merge pull request ballerina-platform#40838 from malinthar/fix-ls-dia…
Browse files Browse the repository at this point in the history
…gram-util-tests

Fix failing diagram util tests
  • Loading branch information
malinthar committed Jun 27, 2023
2 parents bbc591e + b68283c commit 8f0b26f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ private void checkClientVisibleEndpoints(JsonObject ep, String varName, String t
Assert.assertEquals(ep.get("orgName").getAsString(), orgName);
Assert.assertEquals(ep.get("packageName").getAsString(), packageName);
Assert.assertEquals(ep.get("moduleName").getAsString(), moduleName);
Assert.assertEquals(ep.get("version").getAsString(), version);
Assert.assertTrue(version.matches("^[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}$"));

Assert.assertEquals(ep.get("isModuleVar").getAsBoolean(), isModuleVar);
Assert.assertEquals(ep.get("isExternal").getAsBoolean(), isExternal);
Expand Down

0 comments on commit 8f0b26f

Please sign in to comment.