From 42fa5831721c63aa43f40af232ccba146e4cfbbb Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Thu, 20 Mar 2014 16:12:42 -0700 Subject: [PATCH] Fix split shortcut --- IPython/html/tests/notebook/dualmode_merge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/tests/notebook/dualmode_merge.js b/IPython/html/tests/notebook/dualmode_merge.js index 93bd2381b..573b4575d 100644 --- a/IPython/html/tests/notebook/dualmode_merge.js +++ b/IPython/html/tests/notebook/dualmode_merge.js @@ -9,7 +9,7 @@ casper.notebook_test(function () { this.set_cell_text(0, 'abcd'); this.set_cell_editor_cursor(0, 0, 2); this.test.assertEquals(this.get_cell_text(0), 'abcd', 'Verify that cell 0 has the new contents.'); - this.trigger_keydown('ctrl-shift-minus'); // Split + this.trigger_keydown('ctrl-shift-subtract'); // Split this.test.assertEquals(this.get_cell_text(0), 'ab', 'split; Verify that cell 0 has the first half.'); this.test.assertEquals(this.get_cell_text(1), 'cd', 'split; Verify that cell 1 has the second half.'); this.validate_notebook_state('split', 'edit', 1);