aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorFabian Jahr <fjahr@protonmail.com>2023-10-03 18:34:20 +0200
committerFabian Jahr <fjahr@protonmail.com>2023-10-06 19:43:32 +0200
commit1ff1c34656d49d60a93066a886dc1bfad9baccf4 (patch)
tree0f0a8953fe069a5582c2884d1952cee315bad1eb /test/functional/test_framework/test_framework.py
parenta482f86779a6182d87004b463c0eaf21038181c3 (diff)
downloadbitcoin-1ff1c34656d49d60a93066a886dc1bfad9baccf4.tar.xz
test: Rename wait_until_helper to wait_until_helper_internal
Co-authored-by: MarcoFalke <falke.marco@gmail.com>
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 a34c34713e..c46c04c0ec 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -33,7 +33,7 @@ from .util import (
get_datadir_path,
initialize_datadir,
p2p_port,
- wait_until_helper,
+ wait_until_helper_internal,
)
@@ -747,7 +747,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
self.sync_mempools(nodes)
def wait_until(self, test_function, timeout=60):
- return wait_until_helper(test_function, timeout=timeout, timeout_factor=self.options.timeout_factor)
+ return wait_until_helper_internal(test_function, timeout=timeout, timeout_factor=self.options.timeout_factor)
# Private helper methods. These should not be accessed by the subclass test scripts.