##// END OF EJS Templates
Selection test fix
Jonathan Frederic -
Show More
@@ -134,9 +134,10 b' casper.notebook_test(function () {'
134 this.wait_for_idle();
134 this.wait_for_idle();
135
135
136 index = this.append_cell(
136 index = this.append_cell(
137 'from copy import copy\n' +
137 'for widget in selection:\n' +
138 'for widget in selection:\n' +
138 ' d = widget.values.copy()\n' +
139 ' d = copy(widget.values)\n' +
139 ' d["z"] = "z"\n' +
140 ' d.append("z")\n' +
140 ' widget.values = d\n' +
141 ' widget.values = d\n' +
141 'selection[0].value = "z"');
142 'selection[0].value = "z"');
142 this.execute_cell_then(index, function(index){
143 this.execute_cell_then(index, function(index){
General Comments 0
You need to be logged in to leave comments. Login now