@@ -6,7 +6,7 @@ import {
} from '../codeeditor';
import {
- CodeMirrorEditor, DEFAULT_CODEMIRROR_THEME
+ CodeMirrorEditor
} from './editor';
@@ -367,7 +367,7 @@ describe('notebook/cells/widget', () => {
it('should create a code editor widget', () => {
let editor = renderer.createCellEditor(model);
- expect(editor).to.be.a(CodeCellWidget);
+ expect(editor).to.be.a(CodeEditorWidget);
});