diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-20 08:11:50 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-20 08:11:50 -0400 |
commit | 50959ccaaa07ccfb5a01cb38eb5d2b548e0dfe9a (patch) | |
tree | 1cf88b1dae6d2bf9d6daf1d5d35bce45a50ab3ee /tests/test_summary.py | |
parent | 8c3cddefe07e25d96d9e9c4d7ea24b345d88eeec (diff) | |
download | python-coveragepy-git-50959ccaaa07ccfb5a01cb38eb5d2b548e0dfe9a.tar.gz |
Not going to use print functions, but at least make them all look the same.
--HG--
branch : 4.0
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 8035513e..29167bf8 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -16,7 +16,7 @@ class SummaryTest(CoverageTest): import covmod1 import covmodzip1 a = 1 - print ('done') + print('done') """) # Parent class saves and restores sys.path, we can just modify it. sys.path.append(self.nice_file(os.path.dirname(__file__), 'modules')) |