diff --git a/__tests__/restoreImpl.test.ts b/__tests__/restoreImpl.test.ts index 2fee7cf..2f6d3a6 100644 --- a/__tests__/restoreImpl.test.ts +++ b/__tests__/restoreImpl.test.ts @@ -484,7 +484,7 @@ test("restore with save-always set", async () => { saveAlways: true }); - const setCacheHitOutputMock = jest.spyOn(core, "setOutput"); + const setSaveAlwaysOutputMock = jest.spyOn(core, "setOutput"); const restoreCacheMock = jest .spyOn(cache, "restoreCache") .mockImplementationOnce(() => { @@ -504,8 +504,8 @@ test("restore with save-always set", async () => { false ); - expect(setCacheHitOutputMock).toHaveBeenCalledTimes(1); - expect(setCacheHitOutputMock).toHaveBeenCalledWith( + expect(setSaveAlwaysOutputMock).toHaveBeenCalledTimes(1); + expect(setSaveAlwaysOutputMock).toHaveBeenCalledWith( "save-always-d18d746b9", "true" );