Skip to content

Commit

Permalink
Fix test/harness/[a]sync_index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
f52985 committed Jan 9, 2024
1 parent 9717383 commit 085fe8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/harness/async_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ function reinitializeRegistry() {
print_f64: console.log.bind(console),
global_i32: 666,
global_i64: 666n,
global_f32: 666,
global_f64: 666,
global_f32: 666.6,
global_f64: 666.6,
table: new WebAssembly.Table({
initial: 10,
maximum: 20,
Expand Down
4 changes: 2 additions & 2 deletions test/harness/sync_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ function reinitializeRegistry() {
print_f64: console.log.bind(console),
global_i32: 666,
global_i64: 666n,
global_f32: 666,
global_f64: 666,
global_f32: 666.6,
global_f64: 666.6,
table: new WebAssembly.Table({initial: 10, maximum: 20, element: 'anyfunc'}),
memory: new WebAssembly.Memory({initial: 1, maximum: 2})
};
Expand Down

0 comments on commit 085fe8e

Please sign in to comment.