aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2023-02-06 22:16:37 +0000
committerJoão Valverde <j@v6e.pt>2023-02-07 10:12:08 +0000
commitc62aa67d2ce6b1d1ec35365eeee690ca68e908a4 (patch)
tree43af6a69f67cd267d816da8da83ea0c66ff496b9 /test
parent25cf3e2e9849e7308895329f13794966bc56d3db (diff)
Move ui/exit_codes.h to include/
Diffstat (limited to 'test')
-rw-r--r--test/subprocesstest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/subprocesstest.py b/test/subprocesstest.py
index 78db95aed0..9acf7d8c9d 100644
--- a/test/subprocesstest.py
+++ b/test/subprocesstest.py
@@ -64,7 +64,7 @@ class LoggingPopen(subprocess.Popen):
super().__init__(proc_args, *args, **kwargs)
self.stdout_str = ''
self.stderr_str = ''
-
+
@staticmethod
def trim_output(out_log, max_lines):
lines = out_log.splitlines(True)
@@ -119,7 +119,7 @@ class SubprocessTestCase(unittest.TestCase):
super().__init__(*args, **kwargs)
self.exit_ok = 0
- # See ui/exit_codes.h
+ # See ws_exit_codes.h
self.exit_command_line = 1
self.exit_invalid_interface = 2
self.exit_invalid_file_error = 3