We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0a2459 commit a29eefbCopy full SHA for a29eefb
1 file changed
tests/test_magic.py
@@ -924,8 +924,8 @@ def test_notebook_export_json_with_output():
924
_ip.colors = "neutral"
925
926
commands = [
927
- "1+1",
928
"display('test')",
+ "1+1",
929
"display('a'), display('b')",
930
"1/0",
931
"print('test')",
@@ -950,7 +950,7 @@ def test_notebook_export_json_with_output():
950
expected_nb = nbformat.read(outfile, as_version=4)
951
952
for cmd in commands:
953
- _ip.run_cell(cmd, store_history=True)
+ _ip.run_cell(cmd, store_history=True, silent=False)
954
955
with TemporaryDirectory() as td:
956
outfile = os.path.join(td, "nb.ipynb")
0 commit comments