Skip to content

Commit 78be7b7

Browse files
committed
ruff format
1 parent d743511 commit 78be7b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/indexing/test_iloc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -795,9 +795,9 @@ def test_iloc_mask(self):
795795
idx is None or (idx == "index" and method != ".iloc")
796796
) and "0b" in expected_result:
797797
# For successful numeric results, exact match is needed
798-
assert (
799-
expected_result == answer
800-
), f"[{key}] does not match [{answer}]"
798+
assert expected_result == answer, (
799+
f"[{key}] does not match [{answer}]"
800+
)
801801
else:
802802
# For error messages, substring match is sufficient
803803
assert expected_result in answer, f"[{key}] not found in [{answer}]"

0 commit comments

Comments
 (0)