提交 a98f29fd 编写于 作者: J Johannes Rieken

fix compile errors

上级 c4ac419e
......@@ -23,7 +23,7 @@ suite('NotebookViewModel', () => {
const undoRedoService = instantiationService.get(IUndoRedoService);
test('ctor', function () {
const notebook = new NotebookTextModel('notebook', false, URI.parse('test'), [], notebookDocumentMetadataDefaults, { transientMetadata: {}, transientOutputs: false }, undoRedoService, textModelService);
const notebook = new NotebookTextModel('notebook', URI.parse('test'), [], notebookDocumentMetadataDefaults, { transientMetadata: {}, transientOutputs: false }, undoRedoService, textModelService);
const model = new NotebookEditorTestModel(notebook);
const eventDispatcher = new NotebookEventDispatcher();
const viewModel = new NotebookViewModel('notebook', model.notebook, eventDispatcher, null, instantiationService, blukEditService, undoRedoService);
......
......@@ -457,7 +457,7 @@ export function withTestNotebook(instantiationService: TestInstantiationService,
const viewType = 'notebook';
const editor = new TestNotebookEditor();
const notebook = new NotebookTextModel(viewType, false, URI.parse('test'), cells.map(cell => {
const notebook = new NotebookTextModel(viewType, URI.parse('test'), cells.map(cell => {
return {
source: cell[0],
language: cell[1],
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册