From 9631ff87c26c31ad23ff0bb7b97415889ac3347f Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Tue, 25 Feb 2020 16:47:09 +0000 Subject: [PATCH] Update tests --- __tests__/restore.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/restore.test.ts b/__tests__/restore.test.ts index c96a2d6..05fed55 100644 --- a/__tests__/restore.test.ts +++ b/__tests__/restore.test.ts @@ -136,7 +136,7 @@ test("restore with no cache found", async () => { expect(failedMock).toHaveBeenCalledTimes(0); expect(infoMock).toHaveBeenCalledWith( - `Cache not found for input keys: ${key}.` + `Cache not found for input keys: ${key}` ); }); @@ -195,7 +195,7 @@ test("restore with restore keys and no cache found", async () => { expect(failedMock).toHaveBeenCalledTimes(0); expect(infoMock).toHaveBeenCalledWith( - `Cache not found for input keys: ${key}, ${restoreKey}.` + `Cache not found for input keys: ${key}, ${restoreKey}` ); });