aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoel Klabo <joelklabo@gmail.com>2020-12-24 10:54:56 -0800
committerJoel Klabo <joelklabo@gmail.com>2020-12-24 10:54:56 -0800
commit40fdb2a212d0a0e775114e4766d065e6d234c155 (patch)
tree091774bf05822162fe5e872e159403a643bc743f /test
parentf1dbf92ff0475a01d20170ea422c1d086acbbc57 (diff)
downloadbitcoin-40fdb2a212d0a0e775114e4766d065e6d234c155.tar.xz
test: Fix Comment Typo in BitcoinTestFramework
Missing "override" in comment describing use of set_test_params
Diffstat (limited to 'test')
-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 bf047c5f68..04ef2670cc 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):