Skip to content

Commit

Permalink
Updated tests for @doclink error in Terminals.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Sep 12, 2024
1 parent 266411a commit e55b702
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void testFMI2() throws Exception
errors.get(1).message);
Assert.assertTrue(errors.get(1).doclinks != null);
Assert.assertEquals(
"<FMI2_STANDARD>#section-terminalvars\n",
"<FMI3_STANDARD>#section-terminalvars\n",
errors.get(1).doclinks.get(0).toString());
}

Expand Down
2 changes: 1 addition & 1 deletion fmi2/vdmcheck/src/test/java/MaestroCheckFMI2Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void test() throws Exception
errors.get(1).message);
Assert.assertTrue(errors.get(1).doclinks != null);
Assert.assertEquals(
"<FMI2_STANDARD>#section-terminalvars\n",
"<FMI3_STANDARD>#section-terminalvars\n",
errors.get(1).doclinks.get(0).toString());

errors = checker.check(nosuch, null, null);
Expand Down

0 comments on commit e55b702

Please sign in to comment.