fix js test print statement on python 3

This commit is contained in:
MinRK 2013-11-07 16:26:04 -08:00
parent a54e50514d
commit 35fcbbd96f

View File

@ -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);