summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-10-14 10:59:50 +0200
committerjvoisin2018-10-14 10:59:50 +0200
commitda88d30689baee033d13f7e14f51228aef27c564 (patch)
treee96cafdc4ba732e340573f4d643d3ede3dd49d38
parentf1552b2ccbeb0df9a8954b3454f82bf7ba182fae (diff)
Fix the CI on debian
-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 9bb4ba3..6d98136 100644
--- a/tests/test_climat2.py
+++ b/tests/test_climat2.py
@@ -158,7 +158,7 @@ class TestGetMeta(unittest.TestCase):
158 158
159 def test_flac(self): 159 def test_flac(self):
160 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.flac'], 160 proc = subprocess.Popen(mat2_binary + ['--show', './tests/data/dirty.flac'],
161 stdout=subprocess.PIPE) 161 stdout=subprocess.PIPE, bufsize=0)
162 stdout, _ = proc.communicate() 162 stdout, _ = proc.communicate()
163 self.assertIn(b'comments: Thank you for using MAT !', stdout) 163 self.assertIn(b'comments: Thank you for using MAT !', stdout)
164 self.assertIn(b'genre: Python', stdout) 164 self.assertIn(b'genre: Python', stdout)