summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r--tests/test_cmdline.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index 3edc8466..3e92dc7e 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -126,7 +126,8 @@ class CmdLineTestTest(CmdLineTest):
def test_assert_same_method_calls(self):
# All the other tests here use self.cmd_executes_same in successful
# ways, so here we just check that it fails.
- self.assertRaises(AssertionError, self.cmd_executes_same, "-e", "-c")
+ with self.assertRaises(AssertionError):
+ self.cmd_executes_same("-e", "-c")
class ClassicCmdLineTest(CmdLineTest):
@@ -752,10 +753,8 @@ class CmdMainTest(CoverageTest):
self.assertEqual(err[-2], 'Exception: oh noes!')
def test_internalraise(self):
- self.assertRaisesRegexp(ValueError,
- "coverage is broken",
- coverage.cmdline.main, ['internalraise']
- )
+ with self.assertRaisesRegexp(ValueError, "coverage is broken"):
+ coverage.cmdline.main(['internalraise'])
def test_exit(self):
ret = coverage.cmdline.main(['exit'])