summaryrefslogtreecommitdiff
path: root/test/unit/test_finalize.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_finalize.py')
-rw-r--r--test/unit/test_finalize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/test_finalize.py b/test/unit/test_finalize.py
index 9a5c3c750..ff4eebd9c 100644
--- a/test/unit/test_finalize.py
+++ b/test/unit/test_finalize.py
@@ -8,7 +8,7 @@ class EmscriptenFinalizeTest(utils.BinaryenTestCase):
def test_em_asm_mangled_string(self):
input_dir = os.path.dirname(__file__)
p = shared.run_process(shared.WASM_EMSCRIPTEN_FINALIZE + [
- os.path.join(input_dir, 'input', 'em_asm_mangled_string.wast'), '-o', os.devnull, '--global-base=1024'
+ os.path.join(input_dir, 'input', 'em_asm_mangled_string.wat'), '-o', os.devnull, '--global-base=1024'
], check=False, capture_output=True)
self.assertNotEqual(p.returncode, 0)
self.assertIn('Fatal: local.get of unknown in arg0 of call to emscripten_asm_const_int (used by EM_ASM* macros) in function main.', p.stderr)