diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-08-27 11:52:52 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-08-27 18:50:08 +0200 |
commit | fa1cd9e1ddc6918c3d600d36eadea71eebb242b6 (patch) | |
tree | b2fb725e3ae1b2a531cd37c522b7f10a106a6b7b /test/functional/test_framework | |
parent | fad2794e93b4f5976e81793a4a63aa03a2c8c686 (diff) |
test: Remove unused lock arg from BitcoinTestFramework.wait_until
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index a0f5528afb..f41f5129b8 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -603,8 +603,8 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): self.sync_blocks(nodes) self.sync_mempools(nodes) - def wait_until(self, test_function, timeout=60, lock=None): - return wait_until_helper(test_function, timeout=timeout, lock=lock, timeout_factor=self.options.timeout_factor) + def wait_until(self, test_function, timeout=60): + return wait_until_helper(test_function, timeout=timeout, timeout_factor=self.options.timeout_factor) # Private helper methods. These should not be accessed by the subclass test scripts. |