Skip to content

Commit e001a0a

Browse files
authored
Fix nyc compile error (#14402)
1 parent 7b1281e commit e001a0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/datascience/notebook/helpers.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ suite('DataScience - NativeNotebook helpers', () => {
3131
];
3232

3333
// tslint:disable-next-line: no-any
34-
const notebook = notebookModelToVSCNotebookData(true, {}, Uri.file(''), cells, PYTHON_LANGUAGE);
34+
const notebook = notebookModelToVSCNotebookData(true, {}, Uri.file(''), cells as any, PYTHON_LANGUAGE);
3535

3636
assert.isOk(notebook);
3737
assert.deepEqual(notebook.languages, ['*']);

0 commit comments

Comments
 (0)