summaryrefslogtreecommitdiff
path: root/tests/test_climat2.py
diff options
context:
space:
mode:
authorjvoisin2018-11-07 21:54:34 +0100
committerjvoisin2018-11-07 22:07:46 +0100
commit8ff57c5803152c619f88e44ffded28540a289d44 (patch)
tree1838dbeec208b5007c8f4589c050a128ad016eb4 /tests/test_climat2.py
parent04bb8c8ccfe1fb789ead340e88b18d6ac9b9e908 (diff)
Do not display control characters in output
Kudos to Sherry Taylor for reporting this issue ♥
Diffstat (limited to 'tests/test_climat2.py')
-rw-r--r--tests/test_climat2.py2
1 files changed, 1 insertions, 1 deletions
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):
121 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.pdf'], 121 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.pdf'],
122 stdout=subprocess.PIPE) 122 stdout=subprocess.PIPE)
123 stdout, _ = proc.communicate() 123 stdout, _ = proc.communicate()
124 self.assertIn(b'producer: pdfTeX-1.40.14', stdout) 124 self.assertIn(b'Producer: pdfTeX-1.40.14', stdout)
125 125
126 def test_png(self): 126 def test_png(self):
127 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.png'], 127 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.png'],