From 73891277eaecd41b04e73fc1c033b382b409d124 Mon Sep 17 00:00:00 2001 From: Alexander Golovanov Date: Tue, 21 Jan 2025 21:41:22 +0100 Subject: [PATCH] Change the memory config in the test builder to `default()` --- crates/vm/src/arch/testing/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/vm/src/arch/testing/mod.rs b/crates/vm/src/arch/testing/mod.rs index 0636147c5..a6177a0a0 100644 --- a/crates/vm/src/arch/testing/mod.rs +++ b/crates/vm/src/arch/testing/mod.rs @@ -260,7 +260,7 @@ impl VmChipTestBuilder { impl Default for VmChipTestBuilder { fn default() -> Self { - let mem_config = MemoryConfig::new(2, 1, 29, 29, 17, 64, 1 << 22); + let mem_config = MemoryConfig::default(); let range_checker = SharedVariableRangeCheckerChip::new(VariableRangeCheckerBus::new( RANGE_CHECKER_BUS, mem_config.decomp,