summaryrefslogtreecommitdiffstats
path: root/tests/test_wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_wrapper.py')
-rw-r--r--tests/test_wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_wrapper.py b/tests/test_wrapper.py
index 8bb5eb28..77ceda8f 100644
--- a/tests/test_wrapper.py
+++ b/tests/test_wrapper.py
@@ -126,7 +126,7 @@ class RunCommand(RepoWrapperTestCase):
126 self.wrapper.run_command(["true"], check=False) 126 self.wrapper.run_command(["true"], check=False)
127 self.wrapper.run_command(["true"], check=True) 127 self.wrapper.run_command(["true"], check=True)
128 self.wrapper.run_command(["false"], check=False) 128 self.wrapper.run_command(["false"], check=False)
129 with self.assertRaises(self.wrapper.RunError): 129 with self.assertRaises(subprocess.CalledProcessError):
130 self.wrapper.run_command(["false"], check=True) 130 self.wrapper.run_command(["false"], check=True)
131 131
132 132