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 45d5615 commit 7a09867
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/numbers/int_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ def test_vo_equal_hash(self):
equal_vo_hash = hash(self._cls(39))
self.assertEqual(original_vo_hash, equal_vo_hash)

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

def test_value_return_input_value(self):
vo = Int(39)
self.assertEqual(39, vo.value())
Expand Down

0 comments on commit 7a09867

Please sign in to comment.