File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ describe('setup-go', () => {
98
98
logSpy = jest . spyOn ( core , 'info' ) ;
99
99
dbgSpy = jest . spyOn ( core , 'debug' ) ;
100
100
getSpy . mockImplementation ( ( ) => < im . IGoVersion [ ] | null > goJsonData ) ;
101
- cnSpy . mockImplementation ( ( line ) => {
101
+ cnSpy . mockImplementation ( line => {
102
102
// uncomment to debug
103
103
// process.stderr.write('write:' + line + '\n');
104
104
} ) ;
105
- logSpy . mockImplementation ( ( line ) => {
105
+ logSpy . mockImplementation ( line => {
106
106
// uncomment to debug
107
107
//process.stderr.write('log:' + line + '\n');
108
108
} ) ;
109
- dbgSpy . mockImplementation ( ( line ) => {
109
+ dbgSpy . mockImplementation ( msg => {
110
110
// uncomment to see debug output
111
111
// process.stderr.write(msg + '\n');
112
112
} ) ;
You can’t perform that action at this time.
0 commit comments