Skip to content

Commit fa27d99

Browse files
author
MarcoFalke
committed
[qa] create_cache: Delete temp dir when done
1 parent fa7caf6 commit fa27d99

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

qa/rpc-tests/create_cache.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,15 @@
1212

1313
class CreateCache(BitcoinTestFramework):
1414

15+
def __init__(self):
16+
super().__init__()
17+
18+
# Test network and test nodes are not required:
19+
self.num_nodes = 0
20+
self.nodes = []
21+
1522
def setup_network(self):
16-
# Don't setup any test nodes
17-
self.options.noshutdown = True
23+
pass
1824

1925
def run_test(self):
2026
pass

0 commit comments

Comments
 (0)