From 57452eb90285a94ffedc516c1d31821a7d71d73b Mon Sep 17 00:00:00 2001
From: Evgenii Korolevskii <e-korolevskii@github.com>
Date: Thu, 8 Sep 2022 13:24:00 +0200
Subject: [PATCH] fix debug lines in test

---
 __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 82f100a..2232f91 100644
--- a/__tests__/setup-go.test.ts
+++ b/__tests__/setup-go.test.ts
@@ -98,15 +98,15 @@ describe('setup-go', () => {
     logSpy = jest.spyOn(core, 'info');
     dbgSpy = jest.spyOn(core, 'debug');
     getSpy.mockImplementation(() => <im.IGoVersion[] | null>goJsonData);
-    cnSpy.mockImplementation((line) => {
+    cnSpy.mockImplementation(line => {
       // uncomment to debug
       // process.stderr.write('write:' + line + '\n');
     });
-    logSpy.mockImplementation((line) => {
+    logSpy.mockImplementation(line => {
       // uncomment to debug
       //process.stderr.write('log:' + line + '\n');
     });
-    dbgSpy.mockImplementation((line) => {
+    dbgSpy.mockImplementation(msg => {
       // uncomment to see debug output
       // process.stderr.write(msg + '\n');
     });