From 620b538f348e4f2c63d4f124202be91c7b0efa25 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 26 Mar 2015 15:38:45 +0100 Subject: [PATCH] Make the test error output more readable. --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index bd99fe6..756bd6a 100644 --- a/conftest.py +++ b/conftest.py @@ -17,7 +17,7 @@ class IntegrationTestFile(object): output = subprocess.check_output([VSPEC_RUNNER, '.', VSPEC_FOLDER, self.path]) for line in output.splitlines(): if line.startswith(b'not ok') or line.startswith(b'Error'): - print(output) + print(output.decode('utf-8')) assert False def __repr__(self):