Fixing references to IPython.keycodes.

This commit is contained in:
Brian E. Granger 2014-02-20 11:50:03 -08:00
parent c76ab1d836
commit 929f5bc8ea

View File

@ -9,7 +9,7 @@ casper.notebook_test(function() {
var cell_one = IPython.notebook.get_selected_cell();
cell_one.set_text('a = 5');
IPython.utils.press(IPython.keycodes.b)
IPython.utils.press(IPython.keyboard.keycodes.b)
var cell_two = IPython.notebook.get_selected_cell();
cell_two.set_text('print(a)');
};