Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jul 2, 2022
1 parent 977cb41 commit 27c5eb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/find-pypy.test.ts
Expand Up @@ -155,7 +155,7 @@ describe('findPyPyVersion', () => {

beforeEach(() => {
jest.resetModules();
process.env = { ...env };
process.env = {...env};
tcFind = jest.spyOn(tc, 'find');
tcFind.mockImplementation((tool: string, version: string) => {
const semverRange = new semver.Range(version);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/finder.test.ts
Expand Up @@ -32,7 +32,7 @@ describe('Finder tests', () => {

beforeEach(() => {
jest.resetModules();
process.env = { ...env };
process.env = {...env};
spyCoreAddPath = jest.spyOn(core, 'addPath');
spyCoreExportVariable = jest.spyOn(core, 'exportVariable');
});
Expand Down

0 comments on commit 27c5eb6

Please sign in to comment.