diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-04-17 17:31:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-17 17:31:41 -0700 |
commit | 0c850464aa7f6466dba6bf975bf40f14c9d6d55e (patch) | |
tree | 86116758b8b55bc0da386786087b5e31fb7f602e /scripts/test/s2wasm.py | |
parent | 2e210c1fca804a4ec86bef8855f819747d8bd7ca (diff) | |
download | binaryen-0c850464aa7f6466dba6bf975bf40f14c9d6d55e.tar.gz binaryen-0c850464aa7f6466dba6bf975bf40f14c9d6d55e.tar.bz2 binaryen-0c850464aa7f6466dba6bf975bf40f14c9d6d55e.zip |
fix s2wasm.py hanging indent (#969)
Diffstat (limited to 'scripts/test/s2wasm.py')
-rwxr-xr-x | scripts/test/s2wasm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/test/s2wasm.py b/scripts/test/s2wasm.py index 5e704e51a..bf7c97fbe 100755 --- a/scripts/test/s2wasm.py +++ b/scripts/test/s2wasm.py @@ -26,8 +26,8 @@ def test_s2wasm(): print '\n[ checking .s testcases... ]\n' cmd = S2WASM + [ - os.path.join(options.binaryen_test, 'dot_s', 'basics.s'), - '--import-memory'] + os.path.join(options.binaryen_test, 'dot_s', 'basics.s'), + '--import-memory'] output = run_command(cmd) fail_if_not_contained(output, '(import "env" "memory" (memory $0 1))') |