diff --git a/o1vm/tests/test_mips_elf.rs b/o1vm/tests/test_mips_elf.rs index 04ec89d336..22b7cefdd7 100644 --- a/o1vm/tests/test_mips_elf.rs +++ b/o1vm/tests/test_mips_elf.rs @@ -1,4 +1,4 @@ -use ark_ff::Field; +use ark_ff::PrimeField; use mina_curves::pasta::Fp; use o1vm::{ cannon::{self, State, VmConfiguration}, @@ -29,7 +29,10 @@ impl MipsTest { o1vm::elf_loader::parse_elf(Architecture::Mips, &path).unwrap() } - fn read_word(env: &mut witness::Env, addr: u32) -> u32 { + fn read_word( + env: &mut witness::Env, + addr: u32, + ) -> u32 { let bytes: [u8; 4] = [ env.get_memory_direct(addr), env.get_memory_direct(addr + 1),