Fix formating

pull/89/head
Leigh McCulloch 5 years ago
parent 82e49b01e9
commit 9d11520b50
No known key found for this signature in database
GPG Key ID: 02EA740790312BC4

@ -452,7 +452,7 @@ describe('setup-go', () => {
expect(logSpy).toHaveBeenCalledWith(`Added go to the path`); expect(logSpy).toHaveBeenCalledWith(`Added go to the path`);
expect(logSpy).toHaveBeenCalledWith(`Added GOBIN to the path`); expect(logSpy).toHaveBeenCalledWith(`Added GOBIN to the path`);
let expPath = "/Users/testuser/go/bin"; let expPath = '/Users/testuser/go/bin';
expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`);
}); });
@ -475,10 +475,12 @@ describe('setup-go', () => {
await main.run(); await main.run();
expect(logSpy).toHaveBeenCalledWith(`Setup go stable version spec undefined`); expect(logSpy).toHaveBeenCalledWith(
`Setup go stable version spec undefined`
);
expect(logSpy).toHaveBeenCalledWith(`Added GOBIN to the path`); expect(logSpy).toHaveBeenCalledWith(`Added GOBIN to the path`);
let expPath = "/Users/testuser/go/bin"; let expPath = '/Users/testuser/go/bin';
expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`);
}); });

Loading…
Cancel
Save