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 4961a58 commit 015cf6cCopy full SHA for 015cf6c
tests/test_server.py
@@ -92,7 +92,7 @@ def make_server(
92
93
94
@pytest.fixture
95
-def stub(tmp_path, interceptors):
+def stub(tmp_path, interceptors, monkeypatch):
96
with make_server(tmp_path, interceptors) as stubs:
97
yield stubs.isolate_stub
98
@@ -538,7 +538,7 @@ def test_bridge_connection_reuse_logs(
538
run_request(stub, request, user_logs=logs)
539
540
str_logs = [log.message for log in logs if log.message]
541
- assert str_logs == [
+ assert str_logs[:4] == [
542
"setup",
543
"run",
544
0 commit comments