From d4f5bf1be292db18f729aa3f4d1e4b8b2bfd0df1 Mon Sep 17 00:00:00 2001 From: Mark Giraud Date: Mon, 11 Mar 2024 12:31:54 +0100 Subject: [PATCH] fix: Fix rust test that was missing a parameter --- tests/rust-tests/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rust-tests/main.rs b/tests/rust-tests/main.rs index 1267b86f..b35e395f 100644 --- a/tests/rust-tests/main.rs +++ b/tests/rust-tests/main.rs @@ -763,7 +763,7 @@ fn x86_block_callback() { assert_eq!(emu.mem_write(0x1000, &x86_code32), Ok(())); let hook = emu - .add_block_hook(callback) + .add_block_hook(1, 0, callback) .expect("failed to add block hook"); assert_eq!( emu.emu_start(0x1000, 0x1002, 10 * SECOND_SCALE, 1000),