Skip to content

Commit 06af37c

Browse files
committed
test
1 parent c684c43 commit 06af37c

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
@@ -501,10 +501,10 @@ def __repr__(self):
501501
f"result is {inference.is_hashable(slice(1, 2), allow_slice=False)}"
502502
)
503503

504-
assert not inference.is_hashable(tuple_with_slice), (
504+
assert inference.is_hashable(tuple_with_slice), (
505505
f"result is {inference.is_hashable(tuple_with_slice)}"
506506
)
507-
assert not inference.is_hashable(tuple_with_slice, allow_slice=True), (
507+
assert inference.is_hashable(tuple_with_slice, allow_slice=True), (
508508
f"result is {inference.is_hashable(tuple_with_slice, allow_slice=True)}"
509509
)
510510
assert not inference.is_hashable(tuple_with_slice, allow_slice=False), (

0 commit comments

Comments
 (0)