aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2020-12-27 17:42:48 +0800
committerfanquake <fanquake@gmail.com>2020-12-27 17:51:15 +0800
commit0e1b57b4bb637c5d1c34d4a27fa02f425eba0b98 (patch)
tree5fdd579cc2de70d9dc4f7ec2686755e480d92edb /test/functional/test_framework/test_framework.py
parent31e511658a18d916b743bfcddeef52c0a4e6ea7a (diff)
parent40fdb2a212d0a0e775114e4766d065e6d234c155 (diff)
downloadbitcoin-0e1b57b4bb637c5d1c34d4a27fa02f425eba0b98.tar.xz
Merge #20763: test: Fix comment typo in BitcoinTestFramework
40fdb2a212d0a0e775114e4766d065e6d234c155 test: Fix Comment Typo in BitcoinTestFramework (Joel Klabo) Pull request description: Missing "override" in comment describing use of set_test_params ACKs for top commit: michaelfolkson: ACK 40fdb2a212d0a0e775114e4766d065e6d234c155 Tree-SHA512: bf893a0d5f8dc86a3ec2eaf48cd7c0f0f832f3b3d254b3d99953336db7e294571b1d2c8686030bf8a27cbe67b1a85a54e53ebefb2e57d6d8d6ac864a15dce4e7
Diffstat (limited to 'test/functional/test_framework/test_framework.py')
-rwxr-xr-xtest/functional/test_framework/test_framework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py
index 85d448b2e8..9e6e584dc8 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -332,7 +332,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
# Methods to override in subclass test scripts.
def set_test_params(self):
- """Tests must this method to change default values for number of nodes, topology, etc"""
+ """Tests must override this method to change default values for number of nodes, topology, etc"""
raise NotImplementedError
def add_options(self, parser):