From 3516afccf7e31117b0f03bb7477f6fcb3639ded1 Mon Sep 17 00:00:00 2001 From: GoodDaisy <90915921+GoodDaisy@users.noreply.github.com> Date: Fri, 12 Jan 2024 21:48:42 +0800 Subject: [PATCH] fix typo in test/bitcoin_functional/functional/README.md --- test/bitcoin_functional/functional/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bitcoin_functional/functional/README.md b/test/bitcoin_functional/functional/README.md index 5e3009e6af..82568f3bde 100644 --- a/test/bitcoin_functional/functional/README.md +++ b/test/bitcoin_functional/functional/README.md @@ -29,7 +29,7 @@ don't have test cases for. - Avoid wildcard imports - Use a module-level docstring to describe what the test is testing, and how it is testing it. -- When subclassing the BitcoinTestFramwork, place overrides for the +- When subclassing the BitcoinTestFramework, place overrides for the `set_test_params()`, `add_options()` and `setup_xxxx()` methods at the top of the subclass, then locally-defined helper methods, then the `run_test()` method. - Use `'{}'.format(x)` for string formatting, not `'%s' % x`.