From b99102f9c99d959836f737e019c7de23c29f48a4 Mon Sep 17 00:00:00 2001 From: Jonathan Moody <103143855+moodyjon@users.noreply.github.com> Date: Wed, 21 Sep 2022 11:47:30 -0500 Subject: [PATCH] Bump max_misuse_attempts by 50% to 120000. --- tests/unit/wallet/test_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/wallet/test_database.py b/tests/unit/wallet/test_database.py index 8c0b4e9f8..13406a224 100644 --- a/tests/unit/wallet/test_database.py +++ b/tests/unit/wallet/test_database.py @@ -470,7 +470,7 @@ class TestUpgrade(AsyncioTestCase): class TestSQLiteRace(AsyncioTestCase): - max_misuse_attempts = 80000 + max_misuse_attempts = 120000 def setup_db(self): self.db = sqlite3.connect(":memory:", isolation_level=None)