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 d145d0b commit 2b0ba79Copy full SHA for 2b0ba79
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 not inference.is_hashable(tuple_with_slice)
495
- assert not inference.is_hashable(tuple_with_slice, allow_slice=True)
+ assert inference.is_hashable(tuple_with_slice)
+ assert 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