Skip to content

Commit 25cf12b

Browse files
committed
fix clippy
1 parent 928af83 commit 25cf12b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/dmi_ops.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ fn assert_default_state(state: &IconState, name: &'static str) {
6666
assert_eq!(state.frames, 1);
6767
assert_eq!(state.delay, None);
6868
assert_eq!(state.loop_flag, Looping::Indefinitely);
69-
assert_eq!(state.rewind, false);
70-
assert_eq!(state.movement, false);
69+
assert!(!state.rewind);
70+
assert!(!state.movement);
7171
assert_eq!(state.hotspot, None);
7272
assert_eq!(state.unknown_settings, None);
7373
}

0 commit comments

Comments
 (0)