From fd8638652d14c3ef4011aad5af1ae64890280d9d Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Mon, 16 Dec 2013 10:51:04 +0000 Subject: [PATCH] Still print this, but use py2/py3 compat syntax I realised being able to print is probably an essential part of this test which I may have inadvertendly disabled, so correct that. --- testing/test_junitxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_junitxml.py b/testing/test_junitxml.py index b7c115d8e..05573ad68 100644 --- a/testing/test_junitxml.py +++ b/testing/test_junitxml.py @@ -295,7 +295,7 @@ class TestPython: assert M1 == M2 """) result, dom = runandparse(testdir) - # print dom.toxml() + print(dom.toxml()) def test_pass_captures_stdout(self, testdir): testdir.makepyfile("""