From 664e58a9687c4d85437aef06022b70af60cf01b7 Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Thu, 9 Jan 2020 14:04:35 +0100 Subject: [PATCH] Fix print of test kinds --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 30ef97998..a1eb3b5d8 100755 --- a/test.py +++ b/test.py @@ -1215,7 +1215,7 @@ def run_tests(): if options.kinds: path_cmd = os.path.join("utils", test_runner_name + " --print-test-type-list") (rc, standard_out, standard_err, et) = run_job_synchronously(path_cmd, os.getcwd(), False, False) - print(standard_out.decode()) + print(standard_out) if options.list: if len(options.constrain):