diff options
| author | Robert Collins <robertc@robertcollins.net> | 2011-04-25 09:40:52 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2011-04-25 09:40:52 +1200 |
| commit | aaa87b0d6f110bd52fe659c0fca873d820ad31f2 (patch) | |
| tree | 63c084e01dc89e4df8bb90b2143409ee9de97731 /python/subunit/tests/TestUtil.py | |
| parent | 049a3c5342faac9aa46afc9a882ab37950331fb5 (diff) | |
| download | subunit-git-aaa87b0d6f110bd52fe659c0fca873d820ad31f2.tar.gz | |
Make test suite importable in py3.
Diffstat (limited to 'python/subunit/tests/TestUtil.py')
| -rw-r--r-- | python/subunit/tests/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/tests/TestUtil.py b/python/subunit/tests/TestUtil.py index 1b5ba9c..39d901e 100644 --- a/python/subunit/tests/TestUtil.py +++ b/python/subunit/tests/TestUtil.py @@ -53,7 +53,7 @@ def visitTests(suite, visitor): visitor.visitSuite(test) visitTests(test, visitor) else: - print "unvisitable non-unittest.TestCase element %r (%r)" % (test, test.__class__) + print ("unvisitable non-unittest.TestCase element %r (%r)" % (test, test.__class__)) class TestSuite(unittest.TestSuite): |
