Skip to content

Commit

Permalink
Fix tests with Python 3.12
Browse files Browse the repository at this point in the history
The `AssertNotEquals` alias has been removed
  • Loading branch information
antonio-rojas committed Apr 6, 2024
1 parent 4c9a6b6 commit 9e13b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_pycryptosat.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def test_one_dump(self):

self.solver.start_getting_small_clauses(4, max_glue=10)
x = self.solver.get_next_small_clause()
self.assertNotEquals(x, None)
self.assertNotEqual(x, None)
self.solver.end_getting_small_clauses()


Expand Down

0 comments on commit 9e13b56

Please sign in to comment.