From 106e4c475febe3e08fa7fc632e044fe75a792cc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 26 Apr 2023 10:02:03 +0200 Subject: chore: upgrade rusty_v8 to 0.70.0 (#18844) Closes https://github.com/denoland/deno/issues/18369 --- core/runtime.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/runtime.rs') diff --git a/core/runtime.rs b/core/runtime.rs index 923caaea9..bae6a40db 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -3165,7 +3165,7 @@ pub mod tests { #[test] fn test_heap_limits() { let create_params = - v8::Isolate::create_params().heap_limits(0, 3 * 1024 * 1024); + v8::Isolate::create_params().heap_limits(0, 5 * 1024 * 1024); let mut runtime = JsRuntime::new(RuntimeOptions { create_params: Some(create_params), ..Default::default() @@ -3209,7 +3209,7 @@ pub mod tests { #[test] fn test_heap_limit_cb_multiple() { let create_params = - v8::Isolate::create_params().heap_limits(0, 3 * 1024 * 1024); + v8::Isolate::create_params().heap_limits(0, 5 * 1024 * 1024); let mut runtime = JsRuntime::new(RuntimeOptions { create_params: Some(create_params), ..Default::default() -- cgit v1.2.3