diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:39:00 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:39:00 -0400 |
| commit | 9f9f01d76cb61d251aacac18b0655c92c4009e5b (patch) | |
| tree | f8c5e0bb6785850f828c8005c6a107d220f94deb /tests/test_process.py | |
| parent | abf1aa47e54b7c31cafe8f2c856a383958ddce0d (diff) | |
| download | python-coveragepy-9f9f01d76cb61d251aacac18b0655c92c4009e5b.tar.gz | |
derp2
Diffstat (limited to 'tests/test_process.py')
| -rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index d3d8187..52cb5d2 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -712,10 +712,10 @@ class AliasedCommandTest(CoverageTest): # "coverage3" doesn't work on py2 badcmd = "coverage%d" % (5 - sys.version_info[0]) out = self.run_command(badcmd) - #self.assertNotIn("Code coverage for Python", out) if "Code coverage" in out: out = self.run_command(badcmd + " debug sys") print(out) + self.assertNotIn("Code coverage for Python", out) def test_specific_alias_works(self): # "coverage-2.7" works on py2.7 |
