@@ -14,7 +14,7 @@ import MockHttpsServer from "./testAssets/MockHttpsServer";
1414import { expect } from 'chai' ;
1515import TestZip from "./testAssets/TestZip" ;
1616import { createTestFile } from "./testAssets/TestFile" ;
17- import { PackageInstallation , LogPlatformInfo , DownloadStart , DownloadSizeObtained , DownloadProgress , DownloadSuccess , InstallationStart , InstallationSuccess , PackageInstallStart , DownloadValidation , IntegrityCheckSuccess } from "../../src/omnisharp/loggingEvents" ;
17+ import { PackageInstallation , LogPlatformInfo , DownloadStart , DownloadSizeObtained , DownloadProgress , DownloadSuccess , InstallationStart , InstallationSuccess , PackageInstallStart } from "../../src/omnisharp/loggingEvents" ;
1818import TestEventBus from "./testAssets/TestEventBus" ;
1919import { testPackageJSON } from "./testAssets/testAssets" ;
2020
@@ -67,11 +67,9 @@ suite('OmnisharpDownloader', () => {
6767 new DownloadSizeObtained ( testZip . size ) ,
6868 new DownloadProgress ( 100 , 'OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3' ) ,
6969 new DownloadSuccess ( ' Done!' ) ,
70- new DownloadValidation ( 'OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3' ) ,
71- new IntegrityCheckSuccess ( ) ,
7270 new InstallationStart ( 'OmniSharp for Windows (.NET 4.6 / x86), Version = 1.2.3' ) ,
7371 new InstallationSuccess ( )
74- ] ;
72+ ] ;
7573
7674 expect ( eventBus . getEvents ( ) ) . to . be . empty ;
7775 await downloader . DownloadAndInstallOmnisharp ( version , server . baseUrl , installPath ) ;
0 commit comments