Skip to content

Commit

Permalink
test: fix script command tests
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeon95 committed Oct 18, 2024
1 parent 32ace0d commit 8da5618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/scripting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 8da5618

Please sign in to comment.