From 5bdf4a3baede7e85dcc529aadb240e895e833f52 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Thu, 3 Mar 2016 17:22:12 +0800 Subject: [PATCH] Fixed test_rst_file_syntax error message --- tests/test_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_docs.py b/tests/test_docs.py index a02f6510..07363535 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -36,4 +36,4 @@ def test_rst_file_syntax(filename): stdout=subprocess.PIPE ) err = p.communicate()[1] - assert p.returncode == 0, err + assert p.returncode == 0, err.decode('utf8')