From fb489de586aeace6c9560f05dad21734d3b90aab Mon Sep 17 00:00:00 2001
From: Thomas Boop <thboop@github.com>
Date: Tue, 29 Sep 2020 18:53:48 -0400
Subject: [PATCH] run lint

---
 __tests__/setup-go.test.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/__tests__/setup-go.test.ts b/__tests__/setup-go.test.ts
index 58f54d3..c90d74b 100644
--- a/__tests__/setup-go.test.ts
+++ b/__tests__/setup-go.test.ts
@@ -34,10 +34,10 @@ describe('setup-go', () => {
   let mkdirpSpy: jest.SpyInstance;
   let execSpy: jest.SpyInstance;
   let getManifestSpy: jest.SpyInstance;
-  
+
   beforeAll(() => {
     process.env['GITHUB_PATH'] = ''; // Stub out ENV file functionality so we can verify it writes to standard out
-    console.log("::stop-commands::stoptoken"); // Disable executing of runner commands when running tests in actions
+    console.log('::stop-commands::stoptoken'); // Disable executing of runner commands when running tests in actions
   });
 
   beforeEach(() => {
@@ -96,7 +96,7 @@ describe('setup-go', () => {
   });
 
   afterAll(async () => {
-    console.log("::stoptoken::"); // Re-enable executing of runner commands when running tests in actions
+    console.log('::stoptoken::'); // Re-enable executing of runner commands when running tests in actions
   }, 100000);
 
   it('can find 1.9.7 from manifest on osx', async () => {