Skip to content

Commit

Permalink
style(src): fix prettier lint
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Sep 4, 2023
1 parent d17ace2 commit 115f769
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('action', () => {
pathToDownload,
name,
name,
version
version,
);
expect(mockedCore.addPath).toBeCalledWith(download.binPath);
});
Expand Down
2 changes: 1 addition & 1 deletion src/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('getDownloadObject', () => {
...testSuites,
...architectures.map((arch) => [os, arch] as [string, string]),
],
[] as [string, string][]
[] as [string, string][],
);

describe.each(table)('when OS is %p and arch is %p', (os, arch) => {
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function getDownloadObject(version: string, name: string) {
// join instead of resolve or else path will be broken on windows
dest: path.join(binPath, name + (platform === 'win32' ? '.exe' : '')),
url: `https://codeclimate.com/downloads/test-reporter/test-reporter-${version}-${getOS(
platform
platform,
)}-${getArch(arch)}`,
};
}
Expand Down

0 comments on commit 115f769

Please sign in to comment.