From 42cd146f4154a86fd21f9a14eefa135415ed7391 Mon Sep 17 00:00:00 2001 From: Anthony Tarbinian Date: Fri, 21 Mar 2025 17:33:41 -0700 Subject: [PATCH] fix ci --- tests/fib/test_fib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fib/test_fib.rs b/tests/fib/test_fib.rs index bd1465d..8fa7751 100644 --- a/tests/fib/test_fib.rs +++ b/tests/fib/test_fib.rs @@ -2,13 +2,13 @@ mod tests { use binary_room::instruction::*; use binary_room::utils::translate_to_file; - use binary_room::utils::START; + use binary_room::utils::ARM_START; #[test] fn test_binary_translate() { let riscv_asm: Vec = vec![ RiscVInstruction::Verbatim { - text: START.to_string(), + text: ARM_START.to_string(), }, RiscVInstruction::Addi { dest: RiscVRegister::SP,