Skip to content

Commit b025eee

Browse files
committed
style: apply black to test_fix_loop_metrics
CI caught what my local check missed: I ran black with --quiet piped into tail, which suppresses the "would reformat" message and discards the exit code, so the gate looked clean when it was not.
1 parent 3127595 commit b025eee

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_fix_loop_metrics.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ def test_the_same_failure_fingerprints_the_same():
2424

2525
def test_volatile_noise_does_not_change_the_fingerprint():
2626
"""Two runs of one failing suite differ in temp path, duration and address."""
27-
first = "Output stored in /tmp/tmpk8flk7f1.script_output\n# duration_ms 1335.821531\nat 0x7f3a2b1c AssertionError: x"
27+
first = (
28+
"Output stored in /tmp/tmpk8flk7f1.script_output\n# duration_ms 1335.821531\nat 0x7f3a2b1c AssertionError: x"
29+
)
2830
second = "Output stored in /tmp/tmpy0wo02yi.script_output\n# duration_ms 22.5\nat 0x55e1ff90 AssertionError: x"
2931

3032
assert failure_fingerprint(first) == failure_fingerprint(second)

0 commit comments

Comments
 (0)