Skip to content

Commit 2b0ba79

Browse files
committed
test
1 parent d145d0b commit 2b0ba79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/dtypes/test_inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,8 +491,8 @@ def __repr__(self):
491491
assert inference.is_hashable(hashable_slice, allow_slice=True)
492492
assert inference.is_hashable(hashable_slice, allow_slice=False)
493493

494-
assert not inference.is_hashable(tuple_with_slice)
495-
assert not inference.is_hashable(tuple_with_slice, allow_slice=True)
494+
assert inference.is_hashable(tuple_with_slice)
495+
assert inference.is_hashable(tuple_with_slice, allow_slice=True)
496496
assert not inference.is_hashable(tuple_with_slice, allow_slice=False)
497497

498498
# numpy.array is no longer collections.abc.Hashable as of

0 commit comments

Comments
 (0)