diff --git a/packages/client/lib/commands/LCS_IDX.spec.ts b/packages/client/lib/commands/LCS_IDX.spec.ts index 72d0f985b4..c948fa3eb6 100644 --- a/packages/client/lib/commands/LCS_IDX.spec.ts +++ b/packages/client/lib/commands/LCS_IDX.spec.ts @@ -21,12 +21,12 @@ describe('LCS IDX', () => { client.lcsIdx('1', '2') ]); - console.log(reply); - assert.deepEqual( reply, { - matches: [[[1, 2], [0, 1]]], + matches: [ + [[1, 2], [0, 1]] + ], len: 2 } ); diff --git a/packages/client/lib/commands/LCS_IDX_WITHMATCHLEN.spec.ts b/packages/client/lib/commands/LCS_IDX_WITHMATCHLEN.spec.ts index 80505ce38b..96296be8b7 100644 --- a/packages/client/lib/commands/LCS_IDX_WITHMATCHLEN.spec.ts +++ b/packages/client/lib/commands/LCS_IDX_WITHMATCHLEN.spec.ts @@ -21,12 +21,15 @@ describe('LCS IDX WITHMATCHLEN', () => { client.lcsIdxWithMatchLen('1', '2') ]); + console.log(reply); + assert.deepEqual( reply, { matches: [ - [[[1, 2], [0, 1]]], - 2 + [ + [[1, 2], [0, 1], 2] + ], ], len: 2 }