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 d743511 commit 78be7b7Copy full SHA for 78be7b7
pandas/tests/indexing/test_iloc.py
@@ -795,9 +795,9 @@ def test_iloc_mask(self):
795
idx is None or (idx == "index" and method != ".iloc")
796
) and "0b" in expected_result:
797
# For successful numeric results, exact match is needed
798
- assert (
799
- expected_result == answer
800
- ), f"[{key}] does not match [{answer}]"
+ assert expected_result == answer, (
+ f"[{key}] does not match [{answer}]"
+ )
801
else:
802
# For error messages, substring match is sufficient
803
assert expected_result in answer, f"[{key}] not found in [{answer}]"
0 commit comments