diff --git a/compiler/front_end/lr1_test.py b/compiler/front_end/lr1_test.py index 44ffa75..d3b6995 100644 --- a/compiler/front_end/lr1_test.py +++ b/compiler/front_end/lr1_test.py @@ -311,6 +311,7 @@ def test_conflict_str(self): str(lr1.Conflict(12, "'A'", ["R", "S"]))) self.assertEqual("Conflict for 'A' in state 12: R vs S vs T", str(lr1.Conflict(12, "'A'", ["R", "S", "T"]))) + # oops now it works if __name__ == "__main__":