Skip to content

Commit

Permalink
Fix failing diagram util tests
Browse files Browse the repository at this point in the history
  • Loading branch information
malinthar committed Jun 27, 2023
1 parent bbc591e commit b68283c
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 b68283c

Please sign in to comment.