diff options
author | James Chiang <james.chiangwu@gmail.com> | 2019-11-05 08:47:14 +0100 |
---|---|---|
committer | James Chiang <james.chiangwu@gmail.com> | 2019-11-05 12:55:52 +0100 |
commit | d3ed06e2cdb31dcecf5e647f7e1e52185cc76733 (patch) | |
tree | 60dee22c652eb5517b0c53a95c85771440a03491 /test/functional/test_framework/test_shell.py | |
parent | bdda137878904e9401a84e308ac74c93c2ef87c1 (diff) |
TestShell: Fix typo in TestShell warning printout
Diffstat (limited to 'test/functional/test_framework/test_shell.py')
-rw-r--r-- | test/functional/test_framework/test_shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_shell.py b/test/functional/test_framework/test_shell.py index 79da35b364..97fcc3fa47 100644 --- a/test/functional/test_framework/test_shell.py +++ b/test/functional/test_framework/test_shell.py @@ -53,7 +53,7 @@ class TestShell: def reset(self): if self.running: - print("Shutdown TestWrapper before resetting!") + print("Shutdown TestShell before resetting!") else: self.num_nodes = None super().__init__() |