Skip to content

Commit

Permalink
test: fix script command's functional test
Browse files Browse the repository at this point in the history
Signed-off-by: jhpung <[email protected]>
  • Loading branch information
jhpung committed Oct 18, 2024
1 parent 489345f commit ff1842c
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 ff1842c

Please sign in to comment.