We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0ba79 commit 2a6e7a1Copy full SHA for 2a6e7a1
pandas/tests/dtypes/test_inference.py
@@ -491,8 +491,8 @@ def __repr__(self):
491
assert inference.is_hashable(hashable_slice, allow_slice=True)
492
assert inference.is_hashable(hashable_slice, allow_slice=False)
493
494
- assert inference.is_hashable(tuple_with_slice)
495
- assert inference.is_hashable(tuple_with_slice, allow_slice=True)
+ assert not inference.is_hashable(tuple_with_slice)
+ assert not inference.is_hashable(tuple_with_slice, allow_slice=True)
496
assert not inference.is_hashable(tuple_with_slice, allow_slice=False)
497
498
# numpy.array is no longer collections.abc.Hashable as of
0 commit comments