Skip to content

Commit

Permalink
fix(cli): signup loop length
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmad committed Jan 6, 2024
1 parent dcda1eb commit 744ff9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/tests/e2e.subsidy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ describe("e2e with Subsidy tests", function test() {
});

it("should signup four users", async () => {
for (let i = 0; i < 8; i += 1) {
for (let i = 0; i < 4; i += 1) {
// eslint-disable-next-line no-await-in-loop
await signup(users[i].pubKey.serialize());
}
Expand Down

0 comments on commit 744ff9f

Please sign in to comment.