diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-29 12:39:31 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-03-29 12:39:31 -0400 |
| commit | fd5f53fc5f71ecc0ffabd34cfe577db57a19dfc2 (patch) | |
| tree | b41b22aa21518b1f5f17b271efb1034bfacbf25f /tests/test_cmdline.py | |
| parent | a573e4bead4aa2fcab57c265e1a04cbf0781160c (diff) | |
| download | python-coveragepy-fd5f53fc5f71ecc0ffabd34cfe577db57a19dfc2.tar.gz | |
A better way to indicate the presence of the C extension
Diffstat (limited to 'tests/test_cmdline.py')
| -rw-r--r-- | tests/test_cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index ebda68c..2a0b974 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -601,9 +601,9 @@ class CmdLineStdoutTest(BaseCmdLineTest): out = self.stdout() self.assertIn("ersion ", out) if env.C_TRACER: - self.assertIn("with CTracer", out) + self.assertIn("with C extension", out) else: - self.assertIn("with PyTracer", out) + self.assertIn("without C extension", out) self.assertLess(out.count("\n"), 4) def test_help(self): |
