Skip to content

Commit

Permalink
fix: 🐛 incorrect check in csv order test
Browse files Browse the repository at this point in the history
  • Loading branch information
SophiaH67 committed Apr 15, 2024
1 parent c09dd93 commit 59a73ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/CsvOrder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe("getOrders", function () {
// arrange

// act
while (await order.getOrders({}).then((x) => x.data.length > 0)) {
while (await order.getOrders({}).then((x) => x.data.length < 1)) {
await order.refresh();
await sleep(1000);
}
Expand Down

0 comments on commit 59a73ea

Please sign in to comment.