Skip to content

Commit

Permalink
Merge pull request #4989 from 50Wliu/fix-omnisharp-downloader-tests
Browse files Browse the repository at this point in the history
Fix OmnisharpDownloader tests
  • Loading branch information
JoeRobich authored Jan 10, 2022
2 parents 201a495 + f82f553 commit 866918a
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 866918a

Please sign in to comment.