diff options
author | Christopher Coverdale <chris.coverdale24@gmail.com> | 2020-06-21 23:32:32 +0100 |
---|---|---|
committer | Christopher Coverdale <chris.coverdale24@gmail.com> | 2020-06-22 12:58:14 +0100 |
commit | 20b6e959449d0c07639599b99ba917d2cac62493 (patch) | |
tree | 021837bfa0fa9ccc43a70181306bd6af8ce7f121 /test/functional/feature_logging.py | |
parent | 8ef15e8a86038225afef2487ca23abc10ca5dffa (diff) |
test: refactor functional tests to use restart_node
Diffstat (limited to 'test/functional/feature_logging.py')
-rwxr-xr-x | test/functional/feature_logging.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/feature_logging.py b/test/functional/feature_logging.py index e4bf2d849d..afcbcf099a 100755 --- a/test/functional/feature_logging.py +++ b/test/functional/feature_logging.py @@ -67,8 +67,7 @@ class LoggingTest(BitcoinTestFramework): assert not os.path.isfile(default_log_path) # just sanity check no crash here - self.stop_node(0) - self.start_node(0, ["-debuglogfile=%s" % os.devnull]) + self.restart_node(0, ["-debuglogfile=%s" % os.devnull]) if __name__ == '__main__': |