Update test for altered Notebook deprecation warning

This commit is contained in:
Ben Mares
2021-11-14 11:24:52 +01:00
committed by GitHub
parent dd0fcc0102
commit f5753abc5c

View File

@@ -33,7 +33,7 @@ def test_start_notebook(container, http_client, env, expected_server):
), f"Not the expected command (jupyter {expected_server}) was launched" ), f"Not the expected command (jupyter {expected_server}) was launched"
# Checking warning messages # Checking warning messages
if not env: if not env:
msg = "WARN: Jupyter Notebook deprecation notice" msg = "WARNING: Jupyter Notebook deprecation notice"
assert msg in logs, f"Expected warning message {msg} not printed" assert msg in logs, f"Expected warning message {msg} not printed"