From 4d364d9ee00061c321f0fabacd1a16fe69efda01 Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Thu, 31 Jan 2019 17:16:12 +0900 Subject: [PATCH] tests: Decode Popen output in wmediumd test sets for python3 Signed-off-by: Masashi Honma --- tests/hwsim/test_wmediumd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/hwsim/test_wmediumd.py b/tests/hwsim/test_wmediumd.py index cb322cf00..3550d7b14 100644 --- a/tests/hwsim/test_wmediumd.py +++ b/tests/hwsim/test_wmediumd.py @@ -108,7 +108,7 @@ def start_wmediumd(fn, params): logs = '' while True: - line = p.stdout.readline() + line = p.stdout.readline().decode() if not line: output_wmediumd_log(p, params, logs) raise Exception('wmediumd was terminated unexpectedly') @@ -121,7 +121,7 @@ def stop_wmediumd(p, params): p.terminate() p.wait() stdoutdata, stderrdata = p.communicate() - output_wmediumd_log(p, params, stdoutdata) + output_wmediumd_log(p, params, stdoutdata.decode()) def test_wmediumd_simple(dev, apdev, params): """test a simple wmediumd configuration"""