Do not display control characters in output
Kudos to Sherry Taylor for reporting this issue ♥
This commit is contained in:
parent
04bb8c8ccf
commit
8ff57c5803
2 changed files with 11 additions and 1 deletions
|
@ -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'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue