From 8ff57c5803152c619f88e44ffded28540a289d44 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 7 Nov 2018 21:54:34 +0100 Subject: Do not display control characters in output Kudos to Sherry Taylor for reporting this issue ♥ --- tests/test_climat2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_climat2.py b/tests/test_climat2.py index dd7c9b9..53e4f5b 100644 --- a/tests/test_climat2.py +++ b/tests/test_climat2.py @@ -121,7 +121,7 @@ class TestGetMeta(unittest.TestCase): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.pdf'], stdout=subprocess.PIPE) stdout, _ = proc.communicate() - self.assertIn(b'producer: pdfTeX-1.40.14', stdout) + self.assertIn(b'Producer: pdfTeX-1.40.14', stdout) def test_png(self): proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.png'], -- cgit v1.3