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 7b83c16 commit 0a57d73Copy full SHA for 0a57d73
pandas/tests/dtypes/test_inference.py
@@ -491,7 +491,9 @@ 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(slice(1, 2))
+ assert not inference.is_hashable(slice(1, 2)), (
495
+ f"result is {inference.is_hashable(slice(1, 2))}"
496
+ )
497
assert not inference.is_hashable(slice(1, 2), allow_slice=True)
498
assert not inference.is_hashable(slice(1, 2), allow_slice=False)
499
0 commit comments