diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-11-20 18:09:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 18:09:06 -0800 |
commit | 77b3743f58f59acdb5e40c6e4eea87a4bafc96d3 (patch) | |
tree | d7b31cd0bac99c89052fdc94b02380cd9a231ec5 /scripts | |
parent | 21888c253f775047bcfac28e8110abdcad9d6bcb (diff) | |
download | binaryen-77b3743f58f59acdb5e40c6e4eea87a4bafc96d3.tar.gz binaryen-77b3743f58f59acdb5e40c6e4eea87a4bafc96d3.tar.bz2 binaryen-77b3743f58f59acdb5e40c6e4eea87a4bafc96d3.zip |
Fix syntax errors from #2457 (#2460)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test/wasm2js.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index f5bbb4199..53a890f2c 100755 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -129,7 +129,7 @@ def update_wasm2js_tests(): continue asm = os.path.basename(wasm).replace('.wast', '.2asm.js') - expected_file = os.path.join(get_test_dir('wasm2js', asm)) + expected_file = os.path.join(get_test_dir('wasm2js'), asm) if opt: expected_file += '.opt' |