From d776be45641c7c04a9130494deb4de7ab9b3850d Mon Sep 17 00:00:00 2001
From: Danny Gleckler <daniel.gleckler@d2l.com>
Date: Fri, 9 Feb 2024 02:32:10 -0500
Subject: [PATCH] Fix mock name

---
 __tests__/restoreImpl.test.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/__tests__/restoreImpl.test.ts b/__tests__/restoreImpl.test.ts
index bc40973..75ed7e3 100644
--- a/__tests__/restoreImpl.test.ts
+++ b/__tests__/restoreImpl.test.ts
@@ -500,7 +500,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(() => {
@@ -520,8 +520,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"
     );