Skip to content

Commit

Permalink
fix int hash
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4t4nuk1 committed Dec 14, 2023
1 parent 05fb70e commit cc76be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/numbers/int_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_vo_equal_hash(self):

def test_vo_different_hash(self):
original_vo_hash = hash(self._cls(39))
not_equal_vo_hash = hash(self._cls(93))
not_equal_vo_hash = hash(self._cls(97))
self.assertNotEqual(original_vo_hash, not_equal_vo_hash)

def test_value_return_input_value(self):
Expand Down

0 comments on commit cc76be2

Please sign in to comment.