From bc6edb526dbb6142e03951572878b3762bb2341f Mon Sep 17 00:00:00 2001 From: Alif Rachmawadi Date: Thu, 5 Sep 2019 13:27:28 +0700 Subject: [PATCH] update test assertion --- __tests__/installer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index 488638d..fcaa76f 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -80,7 +80,7 @@ describe('installer tests', () => { it('Acquires latest release version of go if using 1.x and no matching version is installed', async () => { await installer.getGo('1.x'); - const goDir = path.join(toolDir, 'go', '1.13.0-beta1', os.arch()); + const goDir = path.join(toolDir, 'go', '1.13.0', os.arch()); expect(fs.existsSync(`${goDir}.complete`)).toBe(true); if (IS_WINDOWS) {