From 14cbf155fc567a9af5bb3c02631d293b50c88a51 Mon Sep 17 00:00:00 2001 From: Denis Nutiu Date: Tue, 7 Jan 2025 15:18:20 +0200 Subject: [PATCH] fix test_load_rom_ibm_logo --- emulator/src/emulator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emulator/src/emulator.rs b/emulator/src/emulator.rs index 46421b6..2a1f931 100644 --- a/emulator/src/emulator.rs +++ b/emulator/src/emulator.rs @@ -501,7 +501,7 @@ mod tests { #[test] fn test_load_rom_ibm_logo() { // Setup - let mut file = File::open("../../roms/ibm-logo.ch8").expect("Failed to test open ROM"); + let mut file = File::open("../roms/ibm-logo.ch8").expect("Failed to test open ROM"); let mut rom_file_data: [u8; 132] = [0; 132]; file.read(&mut rom_file_data) .expect("Failed to read test ROM");