From 50959ccaaa07ccfb5a01cb38eb5d2b548e0dfe9a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Oct 2013 08:11:50 -0400 Subject: Not going to use print functions, but at least make them all look the same. --HG-- branch : 4.0 --- tests/test_process.py | 8 ++++---- tests/test_summary.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_process.py b/tests/test_process.py index 1ab56e8f..ddbbafd6 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -35,7 +35,7 @@ class ProcessTest(CoverageTest): import covmod1 import covmodzip1 a = 1 - print ('done') + print('done') """) self.assert_doesnt_exist(".coverage") @@ -52,7 +52,7 @@ class ProcessTest(CoverageTest): else: c = 1 d = 1 - print ('done') + print('done') """) out = self.run_command("coverage -x -p b_or_c.py b") @@ -88,7 +88,7 @@ class ProcessTest(CoverageTest): else: c = 1 d = 1 - print ('done') + print('done') """) out = self.run_command("coverage -x -p b_or_c.py b") @@ -128,7 +128,7 @@ class ProcessTest(CoverageTest): else: c = 1 d = 1 - print ('done') + print('done') """) self.make_file(".coveragerc", """\ 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')) -- cgit v1.2.1