Skip to content

Commit 3918d93

Browse files
committed
[tests] fixups from set_test_params()
1 parent 28f788e commit 3918d93

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/functional/bitcoin_cli.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
class TestBitcoinCli(BitcoinTestFramework):
1010

11-
def __init__(self):
12-
super().__init__()
11+
def set_test_params(self):
1312
self.setup_clean_chain = True
1413
self.num_nodes = 1
1514

test/functional/example_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def set_test_params(self):
8585
# Use self.extra_args to change command-line arguments for the nodes
8686
self.extra_args = [[], ["-logips"], []]
8787

88-
# self.log.info("I've finished __init__") # Oops! Can't run self.log before run_test()
88+
# self.log.info("I've finished set_test_params") # Oops! Can't run self.log before run_test()
8989

9090
# Use add_options() to add specific command-line options for your test.
9191
# In practice this is not used very much, since the tests are mostly written

0 commit comments

Comments
 (0)