Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/test_multivalue.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

def test_multivalue_swap():
env = m3.Environment()
rt = env.new_runtime(64)
rt = env.new_runtime(1024)
mod = env.parse_module(MV_SWAP_WASM)
rt.load(mod)
swap = rt.find_function('swap')
Expand All @@ -37,7 +37,7 @@ def test_multivalue_swap():

def test_multivalue_imported():
env = m3.Environment()
rt = env.new_runtime(64)
rt = env.new_runtime(1024)
mod = env.parse_module(MV_IMPORT_WASM)
rt.load(mod)
mod.link_function("env", "swap", "Ii(iI)", lambda a,b: (b,a))
Expand Down