Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebook/tests/services/kernel.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ casper.notebook_test(function () {
this.thenEvaluate(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text("import os\n" +
"from IPython.kernel.connect import get_connection_file\n" +
"from ipykernel.connect import get_connection_file\n" +
"with open(get_connection_file(), 'w') as f:\n" +
" f.write('garbage')\n" +
"os._exit(1)");
Expand Down
2 changes: 1 addition & 1 deletion notebook/tests/services/serialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ casper.notebook_test(function () {
this.then(function () {
var index = this.append_cell([
"import os",
"from IPython.kernel.comm import Comm",
"from ipykernel.comm.comm import Comm",
"comm = Comm(target_name='echo')",
"msgs = []",
"def on_msg(msg):",
Expand Down
2 changes: 1 addition & 1 deletion notebook/tests/services/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ casper.notebook_test(function () {
this.thenEvaluate(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text("import os\n" +
"from IPython.kernel.connect import get_connection_file\n" +
"from ipykernel.connect import get_connection_file\n" +
"with open(get_connection_file(), 'w') as f:\n" +
" f.write('garbage')\n" +
"os._exit(1)");
Expand Down