summaryrefslogtreecommitdiffstats
path: root/testsuite/Testschema
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-07-31 12:55:20 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-07-31 12:55:20 -0500
commit88e2f9e68f104ea3797f7a0ffaeab7171a2eb221 (patch)
tree9a5c24b875caf53fdb2fe901875600440e2c8492 /testsuite/Testschema
parent7c274b35552e631d7b5359b13192e7463eace645 (diff)
downloadbcfg2-88e2f9e68f104ea3797f7a0ffaeab7171a2eb221.tar.gz
bcfg2-88e2f9e68f104ea3797f7a0ffaeab7171a2eb221.tar.bz2
bcfg2-88e2f9e68f104ea3797f7a0ffaeab7171a2eb221.zip
testsuite: Fix output for python3
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'testsuite/Testschema')
-rw-r--r--testsuite/Testschema/test_schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/Testschema/test_schema.py b/testsuite/Testschema/test_schema.py
index ddfe4775f..cd9b74cdf 100644
--- a/testsuite/Testschema/test_schema.py
+++ b/testsuite/Testschema/test_schema.py
@@ -41,7 +41,7 @@ class TestSchemas(Bcfg2TestCase):
xmllint = Popen(['xmllint', '--xinclude', '--noout', '--schema',
self.schema_url] + schemas,
stdout=PIPE, stderr=STDOUT)
- print(xmllint.communicate()[0])
+ print(xmllint.communicate()[0].decode())
self.assertEqual(xmllint.wait(), 0)
def test_duplicates(self):