format code

This commit is contained in:
Erwin Morrhey 2022-10-31 08:18:07 +01:00
parent 3647a1d3c5
commit 3eb41a6796

View file

@ -208,7 +208,7 @@ describe('setupJava', () => {
spyFsStat = jest.spyOn(fs, 'existsSync'); spyFsStat = jest.spyOn(fs, 'existsSync');
spyFsStat.mockImplementation((file: string) => { spyFsStat.mockImplementation((file: string) => {
return file.endsWith('Contents/Home'); return file.endsWith('Contents/Home');
}); });
mockJavaBase = new LocalDistribution(inputs, jdkFile); mockJavaBase = new LocalDistribution(inputs, jdkFile);
@ -242,7 +242,7 @@ describe('setupJava', () => {
}); });
spyFsStat = jest.spyOn(fs, 'existsSync'); spyFsStat = jest.spyOn(fs, 'existsSync');
spyFsStat.mockImplementation((file: string) => { spyFsStat.mockImplementation((file: string) => {
return file.endsWith('Contents/Home'); return file.endsWith('Contents/Home');
}); });
mockJavaBase = new LocalDistribution(inputs, jdkFile); mockJavaBase = new LocalDistribution(inputs, jdkFile);