Skip to content

Commit

Permalink
Fix test case for grammar addition
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbero committed Dec 16, 2014
1 parent 3cfeac8 commit cfbf8a4
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 @@ -64,7 +64,7 @@ class TestGrammar {
assertEquals(1, lastLocation.ius.size)
val uml2iu = lastLocation.ius.head
assertEquals("org.eclipse.uml2.sdk.feature.group", uml2iu.ID)
assertEquals(null, uml2iu.version)
assertEquals("10.1.1.20141228-2310-BUILD1", uml2iu.version)
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void testStandardFile() {
String _iD_2 = uml2iu.getID();
Assert.assertEquals("org.eclipse.uml2.sdk.feature.group", _iD_2);
String _version_2 = uml2iu.getVersion();
Assert.assertEquals(null, _version_2);
Assert.assertEquals("10.1.1.20141228-2310-BUILD1", _version_2);
} catch (Throwable _e) {
throw Exceptions.sneakyThrow(_e);
}
Expand Down

0 comments on commit cfbf8a4

Please sign in to comment.