updated test_test_bash_wrapper_error

This commit is contained in:
2025-12-31 21:00:22 -05:00
parent 3074e3c47e
commit 24b66745d1

View File

@@ -57,5 +57,5 @@ def test_test_bash_wrapper_error() -> None:
"""test_test_bash_wrapper_error.""" """test_test_bash_wrapper_error."""
expected_error = 2 expected_error = 2
stdout, returncode = bash_wrapper("ls /this/path/does/not/exist") stdout, returncode = bash_wrapper("ls /this/path/does/not/exist")
assert stdout == "ls: cannot access '/this/path/does/not/exist': No such file or directory\n" assert stdout == "ls: /this/path/does/not/exist: No such file or directory\n"
assert returncode == expected_error assert returncode == expected_error