1
0
mirror of synced 2024-11-22 09:14:23 +01:00

Fix the CI on debian

This commit is contained in:
jvoisin 2018-10-14 10:59:50 +02:00
parent f1552b2ccb
commit da88d30689

View File

@ -158,7 +158,7 @@ class TestGetMeta(unittest.TestCase):
def test_flac(self): def test_flac(self):
proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.flac'], proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.flac'],
stdout=subprocess.PIPE) stdout=subprocess.PIPE, bufsize=0)
stdout, _ = proc.communicate() stdout, _ = proc.communicate()
self.assertIn(b'comments: Thank you for using MAT !', stdout) self.assertIn(b'comments: Thank you for using MAT !', stdout)
self.assertIn(b'genre: Python', stdout) self.assertIn(b'genre: Python', stdout)