summaryrefslogtreecommitdiff
path: root/tests/unit/errors_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/errors_test.py')
-rw-r--r--tests/unit/errors_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/errors_test.py b/tests/unit/errors_test.py
index 54c2ba8..f8c3a66 100644
--- a/tests/unit/errors_test.py
+++ b/tests/unit/errors_test.py
@@ -126,7 +126,7 @@ class ContainerErrorTest(unittest.TestCase):
err = ContainerError(container, exit_status, command, image, stderr)
msg = ("Command '{}' in image '{}' returned non-zero exit status {}"
- ).format(command, image, exit_status, stderr)
+ ).format(command, image, exit_status)
assert str(err) == msg
def test_container_with_stderr(self):