Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Shibanov committed Jun 22, 2020
1 parent 818903f commit 48f7f78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/setup-go.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('setup-go', () => {
expect(versions).toBeDefined();
let match = await tc.findFromManifest('1.12.17', true, versions);
expect(match).toBeDefined();
expect(match.version).toBe('1.12.17');
expect(match!.version).toBe('1.12.17');
});

it('can find 12 from manifest on linux', async () => {
Expand All @@ -142,7 +142,7 @@ describe('setup-go', () => {
expect(versions).toBeDefined();
let match = await tc.findFromManifest('1.12.17', true, versions);
expect(match).toBeDefined();
expect(match.version).toBe('1.12.17');
expect(match!.version).toBe('1.12.17');
});

it('can find 10 from manifest on windows', async () => {
Expand All @@ -156,7 +156,7 @@ describe('setup-go', () => {
expect(versions).toBeDefined();
let match = await tc.findFromManifest('1.12', true, versions);
expect(match).toBeDefined();
expect(match.version).toBe('1.12.17');
expect(match!.version).toBe('1.12.17');
});

it('finds stable match for exact dot zero version', async () => {
Expand Down

0 comments on commit 48f7f78

Please sign in to comment.