diff options
| author | Camille Mougey <commial@gmail.com> | 2019-03-08 10:59:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-08 10:59:44 +0100 |
| commit | c52333578703a272dd07c197075ff3a38cde30a4 (patch) | |
| tree | 0e83f6e4334a32acce2ab67d1b2587a5f2ceb44e /test | |
| parent | 4c2320b46250a8d6f8774e1218544b72a154cd8e (diff) | |
| parent | 7508a7f892ef9c9db7b4e2ec73bc6cd0da0121c5 (diff) | |
| download | miasm-c52333578703a272dd07c197075ff3a38cde30a4.tar.gz miasm-c52333578703a272dd07c197075ff3a38cde30a4.zip | |
Merge pull request #995 from serpilliere/version_in_setup
Version in setup
Diffstat (limited to 'test')
| -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) |