diff --git a/test/functional/scripting.ts b/test/functional/scripting.ts index ee796bf..60bd86a 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();