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 | ec67a11057d9742181d81261e57a536da3fc7093 (patch) | |
tree | a6d2a3afd04332dc664c0314da16e849d5313206 /tests/test_cmdline.py | |
parent | f30b4a59cd4da3d328683db81189eaf0a2d09da2 (diff) | |
download | python-coveragepy-git-ec67a11057d9742181d81261e57a536da3fc7093.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 ebda68c3..2a0b9741 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): |