Browse Source

Fix missing std-lib in a test

embedded-hal-1.0
Chris 7 years ago
parent
commit
e17697cfb1
  1. 1
      src/color.rs

1
src/color.rs

@ -109,6 +109,7 @@ mod tests {
#[test]
fn from_u8_panic() {
for val in 2..=u8::max_value() {
extern crate std;
let result = std::panic::catch_unwind(|| Color::from(val));
assert!(result.is_err());
}

Loading…
Cancel
Save