From 99e6dcb56b3c6bf1a3c96431da5c75049955bf1d Mon Sep 17 00:00:00 2001 From: Jason Graffius Date: Sat, 20 Jul 2024 10:05:06 -0400 Subject: [PATCH] Test commit, please ignore This should fail --- compiler/front_end/lr1_test.py | 1 + 1 file changed, 1 insertion(+) 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__":