mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 03:40:35 -05:00
missing adopting for end-call
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user