antithesis-tests: Fix accounts to be at least one

This commit is contained in:
Pekka Enberg
2025-04-26 09:38:03 +03:00
parent bde2d4f0a3
commit a7537be2b6

View File

@@ -20,7 +20,7 @@ cur.execute(f'''
# randomly create up to 100 accounts with a balance up to 1e9
total = 0
num_accts = get_random() % 100
num_accts = get_random() % 100 + 1
for i in range(num_accts):
bal = get_random() % 1e9
total += bal