1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

fix LCS IDX WITHMATCHLEN

This commit is contained in:
Leibale
2023-05-14 14:51:45 +03:00
parent dd5dd67bc1
commit cf5510f55b

View File

@@ -21,16 +21,12 @@ describe('LCS IDX WITHMATCHLEN', () => {
client.lcsIdxWithMatchLen('1', '2')
]);
console.log(reply);
assert.deepEqual(
reply,
{
matches: [
[
[[1, 2], [0, 1], 2]
],
],
len: 2
}
);