We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e22b9f6 commit f415d11Copy full SHA for f415d11
src/backend/tests/manual.rs
@@ -310,7 +310,7 @@ fn test_stream_tester() {
310
let _ = io::stdin().read_line(&mut input);
311
assert_eq!(input.pop().unwrap(), '\n');
312
selection = match input.parse::<usize>() {
313
- Ok(i) if (1..=num_streams).contains((&i)) => Some(i),
+ Ok(i) if (1..=num_streams).contains(&i) => Some(i),
314
_ => {
315
println!("Invalid stream. Select again.\n");
316
None
0 commit comments