Skip to content

Commit

Permalink
Merge pull request #749 from antonio-rojas/patch-1
Browse files Browse the repository at this point in the history
Fix tests with Python 3.12
  • Loading branch information
msoos committed Apr 6, 2024
2 parents 4c9a6b6 + 9e13b56 commit c9f7449
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 c9f7449

Please sign in to comment.