test: Rename wait_until_helper to wait_until_helper_internal

Co-authored-by: MarcoFalke <falke.marco@gmail.com>
This commit is contained in:
Fabian Jahr
2023-10-03 18:34:20 +02:00
parent a482f86779
commit 1ff1c34656
4 changed files with 10 additions and 10 deletions

View File

@@ -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.