diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:53:15 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-17 21:53:15 -0400 |
| commit | a89a80acdbfb4de75fda708560fc0c93b13cd80a (patch) | |
| tree | 797a38534f6d8e34e8f06b1ba03e63ab079748cf | |
| parent | 9f9f01d76cb61d251aacac18b0655c92c4009e5b (diff) | |
| download | python-coveragepy-a89a80acdbfb4de75fda708560fc0c93b13cd80a.tar.gz | |
derp3
| -rw-r--r-- | tests/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 52cb5d2..2e8152d 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -713,8 +713,8 @@ class AliasedCommandTest(CoverageTest): badcmd = "coverage%d" % (5 - sys.version_info[0]) out = self.run_command(badcmd) if "Code coverage" in out: - out = self.run_command(badcmd + " debug sys") - print(out) + out2 = self.run_command(badcmd + " debug sys") + print(out2) self.assertNotIn("Code coverage for Python", out) def test_specific_alias_works(self): |
