missing adopting for end-call

This commit is contained in:
Johannes Rieken
2021-06-02 08:16:56 +02:00
parent d487b379ba
commit ee87b2bd43
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ export function activate(context: vscode.ExtensionContext): any {
task.replaceOutput([new vscode.NotebookCellOutput([
vscode.NotebookCellOutputItem.text('test output', 'text/html')
])]);
task.end({ success: true });
task.end(true);
}
};

View File

@@ -173,7 +173,7 @@ suite('NotebookKernel', function () {
const cell1 = notebook.apiNotebook.cellAt(0);
const task = kernel.createNotebookCellExecution(cell1);
task.start();
task.end();
task.end(undefined);
});
test('createNotebookCellExecution, must be selected/associated', function () {