1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2026-02-18 15:31:20 +01:00

Fix tests that do not specify full url

This commit is contained in:
Zachary Eisinger
2019-11-26 13:27:50 -08:00
parent 167e5cb271
commit 09cc69fecb
2 changed files with 15 additions and 15 deletions

View File

@@ -29,8 +29,8 @@ describe('installer tests', () => {
}, 100000);
it('Acquires version of dotnet if no matching version is installed', async () => {
await getDotnet('2.2.104');
const dotnetDir = path.join(toolDir, 'dncs', '2.2.104', os.arch());
await getDotnet('2.2.205');
const dotnetDir = path.join(toolDir, 'dncs', '2.2.205', os.arch());
expect(fs.existsSync(`${dotnetDir}.complete`)).toBe(true);
if (IS_WINDOWS) {