fix js test print statement on python 3

MinRK 12 years ago
parent a54e50514d
commit 35fcbbd96f

@ -5,9 +5,9 @@
casper.notebook_test(function () {
var jsver = this.evaluate(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text('import IPython; print IPython.__version__');
cell.set_text('import IPython; print(IPython.__version__)');
cell.execute();
return IPython.version
return IPython.version;
});
this.wait_for_output(0);

Loading…
Cancel
Save