From ff1842cdc18f12c39c84417e4fc53ac53b476b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=92=8D=EC=A4=91=ED=98=84?= Date: Sat, 19 Oct 2024 02:14:48 +0900 Subject: [PATCH] test: fix script command's functional test Signed-off-by: jhpung --- test/functional/scripting.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/scripting.ts b/test/functional/scripting.ts index ee796bff..60bd86ac 100644 --- a/test/functional/scripting.ts +++ b/test/functional/scripting.ts @@ -251,10 +251,10 @@ describe("scripting", () => { const [a, b] = await redis.multi().test("foo").test("bar").exec(); expect(a[0].message).to.equal( - "NOSCRIPT No matching script. Please use EVAL." + "NOSCRIPT No matching script." ); expect(b[0].message).to.equal( - "NOSCRIPT No matching script. Please use EVAL." + "NOSCRIPT No matching script." ); }); spy.restore();