From f4025b464f40d03afa6da35cffcac6baaf901ad6 Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Wed, 14 Jun 2017 02:14:57 -0600 Subject: [PATCH] Add comment in test --- ffmpeg/tests/test_ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg/tests/test_ffmpeg.py b/ffmpeg/tests/test_ffmpeg.py index e92b068..cdf3242 100644 --- a/ffmpeg/tests/test_ffmpeg.py +++ b/ffmpeg/tests/test_ffmpeg.py @@ -201,7 +201,7 @@ def test_pipe(): p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) in_data = bytes(bytearray([random.randint(0,255) for _ in range(frame_size * frame_count)])) - p.stdin.write(in_data) + p.stdin.write(in_data) # note: this could block, in which case need to use threads p.stdin.close() out_data = p.stdout.read()