Skip to content

Commit c69f7e8

Browse files
Fix test expectations
1 parent 4010673 commit c69f7e8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/featureTests/OmnisharpPackageCreator.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,22 @@ suite("GetOmnisharpPackage : Output package depends on the input package and oth
7777
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/OmniSharp.exe");
7878
});
7979

80-
test('Install test path is calculated using specified path, version and ends with mono.osx - OSX', () => {
80+
test('Install test path is calculated using specified path, version and ends with run - OSX', () => {
8181
let testPackage = inputPackages.find(element => (element.platformId && element.platformId == "osx"));
8282
let resultPackage = SetBinaryAndGetPackage(testPackage, serverUrl, "1.2.3", "experimentPath");
83-
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/mono.osx");
83+
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/run");
8484
});
8585

86-
test('Install test path is calculated using specified path, version and ends with mono.linux-x86 - Linux(x86)', () => {
86+
test('Install test path is calculated using specified path, version and ends with run - Linux(x86)', () => {
8787
let testPackage = inputPackages.find(element => (element.platformId && element.platformId == "linux-x86"));
8888
let resultPackage = SetBinaryAndGetPackage(testPackage, serverUrl, "1.2.3", "experimentPath");
89-
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/mono.linux-x86");
89+
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/run");
9090
});
9191

92-
test('Install test path is calculated using specified path, version and ends with mono.linux-x86_64 - Linux(x64)', () => {
92+
test('Install test path is calculated using specified path, version and ends with run - Linux(x64)', () => {
9393
let testPackage = inputPackages.find(element => (element.platformId && element.platformId == "linux-x64"));
9494
let resultPackage = SetBinaryAndGetPackage(testPackage, serverUrl, "1.2.3", "experimentPath");
95-
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/mono.linux-x86_64");
95+
resultPackage.installTestPath.should.equal("./experimentPath/1.2.3/run");
9696
});
9797
});
9898

@@ -155,7 +155,7 @@ suite('GetPackagesFromVersion : Gets the experimental omnisharp packages from a
155155
let outPackages = GetPackagesFromVersion("1.1.1", inputPackages, serverUrl, "experimentPath");
156156
outPackages.length.should.equal(2);
157157
outPackages[0].installTestPath.should.equal("./experimentPath/1.1.1/OmniSharp.exe");
158-
outPackages[1].installTestPath.should.equal("./experimentPath/1.1.1/mono.osx");
158+
outPackages[1].installTestPath.should.equal("./experimentPath/1.1.1/run");
159159
});
160160

161161
test('Returns only omnisharp packages with experimentalIds', () => {

0 commit comments

Comments
 (0)