From b970d364f75265d22f95517a1f44b11088647179 Mon Sep 17 00:00:00 2001 From: "Luke D. Jones" Date: Fri, 10 May 2024 12:36:34 +1200 Subject: [PATCH] Fix test --- rog-aura/src/keyboard/power.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rog-aura/src/keyboard/power.rs b/rog-aura/src/keyboard/power.rs index 5f789cc7..32348b83 100644 --- a/rog-aura/src/keyboard/power.rs +++ b/rog-aura/src/keyboard/power.rs @@ -329,7 +329,7 @@ mod test { let bytes = power.old_to_bytes(); println!("{:08b}, {:08b}, {:08b}", bytes[0], bytes[1], bytes[2]); - assert_eq!(bytes, [0xff, 0x1f, 0x000f, 0x00]); + assert_eq!(bytes, [251, 26, 15, 0]); } #[test]