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 b41c179 commit af00ab5Copy full SHA for af00ab5
tests/test_subshells.py
@@ -318,8 +318,10 @@ def test_silent_flag_in_subshells():
318
and msg["parent_header"].get("msg_id") == msg_silent["header"]["msg_id"]
319
):
320
continue
321
- if msg['parent_header'].get('msg_id') == msg_silent['header']['msg_id']:
322
- pytest.fail("Silent execution in concurrent setting produced unexpected IOPub message")
+ if msg["parent_header"].get("msg_id") == msg_silent["header"]["msg_id"]:
+ pytest.fail(
323
+ "Silent execution in concurrent setting produced unexpected IOPub message"
324
+ )
325
except Empty:
326
break
327
finally:
0 commit comments