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 c664a28 commit 238fa47Copy full SHA for 238fa47
tests/integration/utils.py
@@ -47,7 +47,7 @@ def stdout_ok(stream):
47
# may appear in some cases and is acceptable
48
#
49
# 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]
+ lines = [_.strip() for _ in stream.splitlines() if _.strip() and b"Got response: 200 OK sent" not in _]
51
assert not lines, f"Unexpected output in stdout: {lines}"
52
53
if out is None:
0 commit comments