Compare commits

...

2 commits

Author SHA1 Message Date
Valentin Weber
4d46991085
Merge 4894bdef2d into 44222843d8 2025-07-08 17:00:16 +00:00
Valentin Weber
4894bdef2d
fix(src/protocol.rs): remove unnecessary cast 2025-07-08 18:58:53 +02:00

View file

@ -534,7 +534,7 @@ mod test {
];
for i in VALID_BRIGHTNESS_VALUES {
assert_eq!(u8::from(Brightness::from(i.0)), i.1);
assert_eq!(u8::from(i.0), i.1);
}
}
}