Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_suite: Fix clippy::unnecessary_map_or warning
``` error: this `map_or` is redundant --> test_suite/build.rs:35:5 | 35 | / env::var_os("RUSTC") 36 | | .and_then(|rustc| Command::new(rustc).arg("--version").output().ok()) 37 | | .and_then(|output| String::from_utf8(output.stdout).ok()) 38 | | .map_or(false, |version| version.contains("nightly") || version.contains("dev")) | |________________________________________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or = note: `-D clippy::unnecessary-map-or` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unnecessary_map_or)]` help: use is_some_and instead | 35 ~ env::var_os("RUSTC") 36 + .and_then(|rustc| Command::new(rustc).arg("--version").output().ok()) 37 + .and_then(|output| String::from_utf8(output.stdout).ok()).is_some_and(|version| version.contains("nightly") || version.contains("dev")) | ```
- Loading branch information