Skip to content

Commit eb94373

Browse files
committed
Fix bulk_table_operations_not_supported test
1 parent fb53268 commit eb94373

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vm/src/wasm_backend/gatekeeper.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,12 +479,12 @@ mod tests {
479479
let wasm = wat::parse_str(
480480
r#"
481481
(module
482-
(table 1000000000 funcref)
482+
(table 1000000 funcref)
483483
(func (export "test") (param $i i32)
484484
;; fill with nulls
485485
i32.const 0
486486
ref.null func
487-
i32.const 1000000000
487+
i32.const 1000000
488488
table.fill 0))
489489
"#,
490490
)

0 commit comments

Comments
 (0)