aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-08-27 08:55:20 +0200
committerMarcoFalke <falke.marco@gmail.com>2020-08-27 18:50:05 +0200
commitfad2794e93b4f5976e81793a4a63aa03a2c8c686 (patch)
tree6b4794a6712d3288880a7cd7bffe181f449c6a06 /test/functional/test_framework/test_framework.py
parentfacb41bf1d1b7ee552c627f9829b4494b817ce28 (diff)
downloadbitcoin-fad2794e93b4f5976e81793a4a63aa03a2c8c686.tar.xz
test: Rename wait until helper to wait_until_helper
Diffstat (limited to 'test/functional/test_framework/test_framework.py')
-rwxr-xr-xtest/functional/test_framework/test_framework.py4
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 2a60f8e0c1..a0f5528afb 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -31,7 +31,7 @@ from .util import (
disconnect_nodes,
get_datadir_path,
initialize_datadir,
- wait_until,
+ wait_until_helper,
)
@@ -604,7 +604,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
self.sync_mempools(nodes)
def wait_until(self, test_function, timeout=60, lock=None):
- return wait_until(test_function, timeout=timeout, lock=lock, timeout_factor=self.options.timeout_factor)
+ return wait_until_helper(test_function, timeout=timeout, lock=lock, timeout_factor=self.options.timeout_factor)
# Private helper methods. These should not be accessed by the subclass test scripts.