Remove debug print statements in container tests

pull/37/head
Jonathan Frederic 12 years ago committed by Jonathan Frederic
parent d2afb9895b
commit 0c8b6029a6

@ -15,7 +15,6 @@ casper.notebook_test(function () {
'print("Success")\n');
this.execute_cell_then(container_index, function(index){
print(this.get_output_cell(index).text);
this.test.assert(this.get_output_cell(index).text == 'Success\n',
'Create container cell executed with correct output.');

@ -18,8 +18,7 @@ casper.notebook_test(function () {
'multicontainer.selected_index = 0\n' +
'print("Success")\n');
this.execute_cell_then(multicontainer1_index, function(index){
print(this.get_output_cell(index, 0).text);
print(this.get_output_cell(index, 1).text);
this.test.assert(this.get_output_cell(index).text == 'Success\n',
'Create multicontainer cell executed with correct output. (1)');

Loading…
Cancel
Save