Skip to content

Commit

Permalink
Fix CI error
Browse files Browse the repository at this point in the history
Signed-off-by: Yi-Pin Chen <[email protected]>
  • Loading branch information
yipin-chen committed Dec 10, 2024
1 parent f4c9eea commit 7f5c81a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/tests/TestUtilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -925,14 +925,14 @@ export async function transactionTest(
baseTransaction.lmpop([key24], ListDirection.LEFT);
responseData.push([
"lmpop([key22], ListDirection.LEFT)",
convertRecordToGlideRecord({ [key24]: [field] }),
[{ key: key24, elements: [field2] }],
]);
baseTransaction.lpush(key24, [field2]);
responseData.push(["lpush(key22, [2])", 2]);
baseTransaction.blmpop([key24], ListDirection.LEFT, 0.1, 1);
responseData.push([
"blmpop([key22], ListDirection.LEFT, 0.1, 1)",
convertRecordToGlideRecord({ [key24]: [field] }),
[{ key: key24, elements: [field2] }],
]);
}

Expand Down

0 comments on commit 7f5c81a

Please sign in to comment.