Skip to content

Commit 6d9faf5

Browse files
committed
test: fix overflow test
1 parent ee3f460 commit 6d9faf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/src/builtins.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ fn test_write_builtin_overflow() {
9999
"#;
100100
let main_with_overflow = r#"
101101
i32.const 0
102-
i32.const 300000
102+
i32.const 134_217_729
103103
call $_write
104104
"#; // excessively large data size argument
105105
let result1 = run_main(main_without_overflow, 0);

0 commit comments

Comments
 (0)