Skip to content

Commit 0a57d73

Browse files
committed
test
1 parent 7b83c16 commit 0a57d73

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/dtypes/test_inference.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,9 @@ 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(slice(1, 2))
494+
assert not inference.is_hashable(slice(1, 2)), (
495+
f"result is {inference.is_hashable(slice(1, 2))}"
496+
)
495497
assert not inference.is_hashable(slice(1, 2), allow_slice=True)
496498
assert not inference.is_hashable(slice(1, 2), allow_slice=False)
497499

0 commit comments

Comments
 (0)