Skip to content

Commit 515649d

Browse files
authored
fixed tests (#12886)
1 parent 78d5671 commit 515649d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/datascience/export/exportManager.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ suite('Data Science - Export Manager', () => {
4343
when(exportPdf.export(anything(), anything(), anything())).thenResolve();
4444
when(filePicker.getExportFileLocation(anything(), anything())).thenResolve(Uri.file('foo'));
4545
// tslint:disable-next-line: no-any
46-
when(reporter.createProgressIndicator(anything())).thenReturn(instance(mock<IDisposable>()) as any);
46+
when(reporter.createProgressIndicator(anything(), anything())).thenReturn(instance(mock<IDisposable>()) as any);
4747
exporter = new ExportManager(
4848
instance(exportPdf),
4949
instance(exportHtml),

0 commit comments

Comments
 (0)