From 5085ea096b72cf9da4bd4ff335497d886813ccbe Mon Sep 17 00:00:00 2001 From: Denis Nutiu Date: Wed, 11 Dec 2024 00:44:38 +0200 Subject: [PATCH] fix GetKeyBlocking test --- src/instruction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instruction.rs b/src/instruction.rs index a5ffa19..4b06bd7 100644 --- a/src/instruction.rs +++ b/src/instruction.rs @@ -651,7 +651,7 @@ mod tests { let instruction = Instruction::new([0xFE, 0x0A]); assert_eq!( instruction.processor_instruction, - ProcessorInstruction::GetKeyBlocking { vx: 0xF } + ProcessorInstruction::GetKeyBlocking { vx: 0xE } ) } }