Skip to content

Commit aa2a3a1

Browse files
Update Lib/test/test_long.py
Co-authored-by: Sergey B Kirpichev <[email protected]>
1 parent f2e2626 commit aa2a3a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_long.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1707,7 +1707,7 @@ def test_hash(self):
17071707
self.assertEqual(hash(-sys.hash_info.modulus - 2), -2)
17081708
self.assertEqual(hash(-sys.hash_info.modulus - 1), -2)
17091709
self.assertEqual(hash(-sys.hash_info.modulus), 0)
1710-
self.assertEqual(hash(-sys.hash_info.modulus + 1), -sys.hash_info.modulus + 1))
1710+
self.assertEqual(hash(-sys.hash_info.modulus + 1), -sys.hash_info.modulus + 1)
17111711

17121712
if __name__ == "__main__":
17131713
unittest.main()

0 commit comments

Comments
 (0)