diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-07 16:18:05 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-07 16:18:05 +0100 |
| commit | 1c2dfa3b999fa693d4bc3c10c06f01c896fb7365 (patch) | |
| tree | 12ee362deac7308710156d69e00d4985d368c172 | |
| parent | 4c2320b46250a8d6f8774e1218544b72a154cd8e (diff) | |
| download | miasm-1c2dfa3b999fa693d4bc3c10c06f01c896fb7365.tar.gz miasm-1c2dfa3b999fa693d4bc3c10c06f01c896fb7365.zip | |
Test: Fix docker with python 3.5
| -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) |