diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-04 22:09:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 22:09:06 +0100 |
commit | 6dd76332619c917e0d00766fe84e9205b8311e79 (patch) | |
tree | 02a75d2d209fc3543019c716ad671333628b1193 /tools/util_test.py | |
parent | dc232d8489c985d4f9c230a57f28ddd09723667d (diff) |
chore: remove dead Python code (#8248)
Diffstat (limited to 'tools/util_test.py')
-rwxr-xr-x | tools/util_test.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/util_test.py b/tools/util_test.py index 7ad9b415e..7f5433114 100755 --- a/tools/util_test.py +++ b/tools/util_test.py @@ -2,15 +2,10 @@ import os from test_util import DenoTestCase, run_tests -from util import (parse_exit_code, shell_quote_win, root_path) +from util import (shell_quote_win, root_path) class TestUtil(DenoTestCase): - def test_parse_exit_code(self): - assert parse_exit_code('hello_error54_world') == 54 - assert parse_exit_code('hello_error_world') == 1 - assert parse_exit_code('hello_world') == 0 - def test_shell_quote_win(self): assert shell_quote_win('simple') == 'simple' assert shell_quote_win( |