We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 378cffb commit c241effCopy full SHA for c241eff
pandas/tools/tests/test_hashing.py
@@ -165,11 +165,11 @@ def test_hash_collisions(self):
165
166
# these should be different!
167
result1 = hash_array(np.asarray(L[0:1], dtype=object), 'utf8')
168
- expected1 = np.array([1760245841805064774], dtype=np.uint64)
+ expected1 = np.array([14963968704024874985], dtype=np.uint64)
169
self.assert_numpy_array_equal(result1, expected1)
170
171
result2 = hash_array(np.asarray(L[1:2], dtype=object), 'utf8')
172
- expected2 = np.array([1760245841805064774], dtype=np.uint64)
+ expected2 = np.array([16428432627716348016], dtype=np.uint64)
173
self.assert_numpy_array_equal(result2, expected2)
174
175
result = hash_array(np.asarray(L, dtype=object), 'utf8')
0 commit comments