##// END OF EJS Templates
Remove debug print statements in container tests
Jonathan Frederic -
Show More
@@ -15,7 +15,6 casper.notebook_test(function () {
15 15 'print("Success")\n');
16 16 this.execute_cell_then(container_index, function(index){
17 17
18 print(this.get_output_cell(index).text);
19 18 this.test.assert(this.get_output_cell(index).text == 'Success\n',
20 19 'Create container cell executed with correct output.');
21 20
@@ -18,8 +18,7 casper.notebook_test(function () {
18 18 'multicontainer.selected_index = 0\n' +
19 19 'print("Success")\n');
20 20 this.execute_cell_then(multicontainer1_index, function(index){
21 print(this.get_output_cell(index, 0).text);
22 print(this.get_output_cell(index, 1).text);
21
23 22 this.test.assert(this.get_output_cell(index).text == 'Success\n',
24 23 'Create multicontainer cell executed with correct output. (1)');
25 24
General Comments 0
You need to be logged in to leave comments. Login now