Skip to content

Commit

Permalink
fix: wrong test expected
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfbl committed Sep 12, 2024
1 parent e364c5b commit b0fc851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/data/test_encode.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def test_encode_universal(self):
)

self.assertEqual(
Conditional(left=Negation(expr=Conditional(left=Predicate(predicate='L', letters=['b', 'b']), right=Universal(var='x', expr=Negation(expr=Predicate(predicate='L', letters=['b', 'x']))))), right=Universal(var='x', expr=Negation(expr=Predicate(predicate='L', letters=['b', 'x'])))),
Conditional(left=Negation(expr=Predicate(predicate='L', letters=['b', 'b'])), right=Universal(var='x', expr=Negation(expr=Predicate(predicate='L', letters=['b', 'x'])))),
encode_expression("~Lbb->∀x~Lbx")
)

Expand Down

0 comments on commit b0fc851

Please sign in to comment.