##// END OF EJS Templates
fix js test print statement on python 3
MinRK -
Show More
@@ -5,9 +5,9
5 5 casper.notebook_test(function () {
6 6 var jsver = this.evaluate(function () {
7 7 var cell = IPython.notebook.get_cell(0);
8 cell.set_text('import IPython; print IPython.__version__');
8 cell.set_text('import IPython; print(IPython.__version__)');
9 9 cell.execute();
10 return IPython.version
10 return IPython.version;
11 11 });
12 12
13 13 this.wait_for_output(0);
General Comments 0
You need to be logged in to leave comments. Login now