Skip to content

Commit 3911672

Browse files
authored
Merge pull request #6358 from datalayer-externals/fix/comm-refactor
Update further to ipykernel comm refactoring
2 parents e764044 + 45e2f2d commit 3911672

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

notebook/tests/services/kernel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ casper.notebook_test(function () {
310310
this.thenEvaluate(function () {
311311
var cell = IPython.notebook.get_cell(0);
312312
cell.set_text("import os\n" +
313-
"from IPython.kernel.connect import get_connection_file\n" +
313+
"from ipykernel.connect import get_connection_file\n" +
314314
"with open(get_connection_file(), 'w') as f:\n" +
315315
" f.write('garbage')\n" +
316316
"os._exit(1)");

notebook/tests/services/serialize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ casper.notebook_test(function () {
3333
this.then(function () {
3434
var index = this.append_cell([
3535
"import os",
36-
"from IPython.kernel.comm import Comm",
36+
"from ipykernel.comm.comm import Comm",
3737
"comm = Comm(target_name='echo')",
3838
"msgs = []",
3939
"def on_msg(msg):",

notebook/tests/services/session.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ casper.notebook_test(function () {
154154
this.thenEvaluate(function () {
155155
var cell = IPython.notebook.get_cell(0);
156156
cell.set_text("import os\n" +
157-
"from IPython.kernel.connect import get_connection_file\n" +
157+
"from ipykernel.connect import get_connection_file\n" +
158158
"with open(get_connection_file(), 'w') as f:\n" +
159159
" f.write('garbage')\n" +
160160
"os._exit(1)");

0 commit comments

Comments
 (0)