diff options
author | Joel Klabo <joelklabo@gmail.com> | 2020-12-24 10:54:56 -0800 |
---|---|---|
committer | Joel Klabo <joelklabo@gmail.com> | 2020-12-24 10:54:56 -0800 |
commit | 40fdb2a212d0a0e775114e4766d065e6d234c155 (patch) | |
tree | 091774bf05822162fe5e872e159403a643bc743f /test/functional/test_framework | |
parent | f1dbf92ff0475a01d20170ea422c1d086acbbc57 (diff) |
test: Fix Comment Typo in BitcoinTestFramework
Missing "override" in comment describing use of set_test_params
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 2 |
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): |