Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
cm-ayf committed Jan 17, 2024
1 parent 7337d2f commit 01b30b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/jlabel-question/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,12 +314,12 @@ fn all_query() {
UnsignedRangePosition::J2,
] {
let q = AllQuestion::UnsignedRange(Question {
position: position,
position,
range: None,
});
assert!(q.test(&nones));
let q = AllQuestion::UnsignedRange(Question {
position: position,
position,
range: Some(0..1),
});
assert!(q.test(&zeros));
Expand Down

0 comments on commit 01b30b1

Please sign in to comment.