Skip to content

Commit

Permalink
fix test to use proper cache setting
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Jun 26, 2024
1 parent cbbcc55 commit 2a3c563
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/e2e-move-tests/src/harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl Default for MoveHarness {
impl MoveHarness {
/// Creates a new harness.
pub fn new() -> Self {
let vm = MoveVM::new(1000, 100);
let vm = MoveVM::default();
let chain = MockChain::new();
let api = MockAPI::empty();

Expand Down
2 changes: 1 addition & 1 deletion crates/vm/src/move_vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ pub struct MoveVM {

impl Default for MoveVM {
fn default() -> Self {
Self::new(1000, 100)
Self::new(1000 * 1024 * 1024, 100 * 1024 * 1024)
}
}

Expand Down

0 comments on commit 2a3c563

Please sign in to comment.