Skip to content

Commit 238fa47

Browse files
committed
fix linting
1 parent c664a28 commit 238fa47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def stdout_ok(stream):
4747
# may appear in some cases and is acceptable
4848
#
4949
# Empty lines are also ignored
50-
lines = [l.strip() for l in stream.splitlines() if l.strip() and b"Got response: 200 OK sent" not in l]
50+
lines = [_.strip() for _ in stream.splitlines() if _.strip() and b"Got response: 200 OK sent" not in _]
5151
assert not lines, f"Unexpected output in stdout: {lines}"
5252

5353
if out is None:

0 commit comments

Comments
 (0)