Skip to content
Snippets Groups Projects
Commit e6f9d043 authored by dgelessus's avatar dgelessus
Browse files

Re-enable commented out asserts in tests

This currently causes a few tests to fail because of operator
associativity issues.
parent 72c4f8ba
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ public class TestUtil {
String ppResult = getTreeAsString(ppStart);
// compare the generated AST and the AST of the pretty print
// assertEquals(result, ppResult);
assertEquals(result, ppResult);
}
public static void compareExpr(String bExpr, String tlaExpr) throws BCompoundException {
......
......@@ -44,7 +44,7 @@ public class ExampleFilesTest extends AbstractParseModuleTest {
String ppTree = TestUtil.getTreeAsString(ppStart);
// comparing result with pretty print
//assertEquals(resultTree, ppTree);
assertEquals(resultTree, ppTree);
// machine file
......@@ -58,7 +58,7 @@ public class ExampleFilesTest extends AbstractParseModuleTest {
String expectedTree = TestUtil.getTreeAsString(expectedStart);
//assertEquals(expectedTree, resultTree);
assertEquals(expectedTree, resultTree);
}
@Config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment