##// END OF EJS Templates
Fixed bug in selection widget tests.
Jonathan Frederic -
Show More
@@ -123,9 +123,8 b' casper.notebook_test(function () {'
123
123
124 index = this.append_cell(
124 index = this.append_cell(
125 'for widget in selection:\n' +
125 'for widget in selection:\n' +
126 ' widget.values.append("z")\n' +
126 ' widget.values = list(widget.values) + ["z"]\n' +
127 ' widget.send_state()\n' +
127 'selection[0].value = "z"');
128 ' widget.value = "z"');
129 this.execute_cell_then(index, function(index){
128 this.execute_cell_then(index, function(index){
130
129
131 // Verify that selecting a combobox option updates all of the others.
130 // Verify that selecting a combobox option updates all of the others.
General Comments 0
You need to be logged in to leave comments. Login now