Skip to content

Commit

Permalink
Fix OmnisharpDownloader tests
Browse files Browse the repository at this point in the history
  • Loading branch information
winstliu committed Jan 2, 2022
1 parent 5366059 commit a111bb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unitTests/OmnisharpDownloader.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ import { modernNetVersion } from "../../src/omnisharp/OmnisharpPackageCreator";
new PackageInstallation('OmniSharp Version = 1.2.3'),
new LogPlatformInfo(new PlatformInformation("win32", "x86")),
new PackageInstallStart(),
new DownloadStart(`OmniSharp for Windows (.NET ${useFramework ? '4.6' : '6'} / x86), Version = 1.2.3`),
new DownloadStart(`OmniSharp for Windows (.NET ${useFramework ? '4.7.2' : '6'} / x86), Version = 1.2.3`),
new DownloadSizeObtained(testZip.size),
new DownloadProgress(100, `OmniSharp for Windows (.NET ${useFramework ? '4.6' : '6'} / x86), Version = 1.2.3`),
new DownloadProgress(100, `OmniSharp for Windows (.NET ${useFramework ? '4.7.2' : '6'} / x86), Version = 1.2.3`),
new DownloadSuccess(' Done!'),
new InstallationStart(`OmniSharp for Windows (.NET ${useFramework ? '4.6' : '6'} / x86), Version = 1.2.3`),
new InstallationStart(`OmniSharp for Windows (.NET ${useFramework ? '4.7.2' : '6'} / x86), Version = 1.2.3`),
new InstallationSuccess()
];

Expand Down

0 comments on commit a111bb7

Please sign in to comment.