diff options
| -rw-r--r-- | test/analysis/dg_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/analysis/dg_check.py b/test/analysis/dg_check.py index a50855ef..d5307367 100644 --- a/test/analysis/dg_check.py +++ b/test/analysis/dg_check.py @@ -10,7 +10,7 @@ dg = subprocess.Popen([sys.executable] + sys.argv[2:], stdout=subprocess.PIPE) stdout, _ = dg.communicate() expected = json.load(open(expected_file)) -result = json.loads(stdout) +result = json.loads(stdout.decode()) assert len(expected) == len(result) |