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 c684c43 commit 06af37cCopy full SHA for 06af37c
pandas/tests/dtypes/test_inference.py
@@ -501,10 +501,10 @@ def __repr__(self):
501
f"result is {inference.is_hashable(slice(1, 2), allow_slice=False)}"
502
)
503
504
- assert not inference.is_hashable(tuple_with_slice), (
+ assert inference.is_hashable(tuple_with_slice), (
505
f"result is {inference.is_hashable(tuple_with_slice)}"
506
507
- assert not inference.is_hashable(tuple_with_slice, allow_slice=True), (
+ assert inference.is_hashable(tuple_with_slice, allow_slice=True), (
508
f"result is {inference.is_hashable(tuple_with_slice, allow_slice=True)}"
509
510
assert not inference.is_hashable(tuple_with_slice, allow_slice=False), (
0 commit comments