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 300f54f commit c43a094Copy full SHA for c43a094
tests/test_terminal.py
@@ -276,7 +276,10 @@ def test_shell_command_override(
276
pytest.importorskip("traitlets", minversion=min_traitlets)
277
argv = shlex.split(f"--ServerApp.terminado_settings={terminado_settings}")
278
app = jp_configurable_serverapp(argv=argv)
279
- if os.name == 'nt':
280
- assert app.web_app.settings["terminal_manager"].shell_command in (expected_shell, ' '.join(expected_shell))
+ if os.name == "nt":
+ assert app.web_app.settings["terminal_manager"].shell_command in (
281
+ expected_shell,
282
+ " ".join(expected_shell),
283
+ )
284
else:
285
assert app.web_app.settings["terminal_manager"].shell_command == expected_shell
0 commit comments