Browse Source

Merge #11215: [tests] fixups from set_test_params()

3918d93f3 [tests] fixups from set_test_params() (John Newbery)

Pull request description:

  #11121 had a silent merge conflict in `bitcoin_cli.py`. This fixes it.

  Also fixes a comment in `example_test.py`

Tree-SHA512: f22a645c51c9aeda005526338ad6f2ee07f2bab172847fc54f51fecf1c79e778970be61e5e637d4e0aba3a02e5aba0737b0b57f1bc11a514a1acd94c221b54d6
0.16
Pieter Wuille 7 years ago
parent
commit
ec20f01ba0
No known key found for this signature in database
GPG Key ID: A636E97631F767E0
  1. 3
      test/functional/bitcoin_cli.py
  2. 2
      test/functional/example_test.py

3
test/functional/bitcoin_cli.py

@ -8,8 +8,7 @@ from test_framework.util import assert_equal @@ -8,8 +8,7 @@ from test_framework.util import assert_equal
class TestBitcoinCli(BitcoinTestFramework):
def __init__(self):
super().__init__()
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 1

2
test/functional/example_test.py

@ -85,7 +85,7 @@ class ExampleTest(BitcoinTestFramework): @@ -85,7 +85,7 @@ class ExampleTest(BitcoinTestFramework):
# Use self.extra_args to change command-line arguments for the nodes
self.extra_args = [[], ["-logips"], []]
# self.log.info("I've finished __init__") # Oops! Can't run self.log before run_test()
# self.log.info("I've finished set_test_params") # Oops! Can't run self.log before run_test()
# Use add_options() to add specific command-line options for your test.
# In practice this is not used very much, since the tests are mostly written

Loading…
Cancel
Save