Task #89427 - added.err
back to task #89427download
Error: CLIPPY_WARNING:
crates/lib/src/status.rs:835:60: warning: use of a disallowed method `str::len`
# |
# 835 | let max_label_len = rows.iter().map(|(label, _)| label.len()).max().unwrap_or(0);
# | ^^^
# |
# = note: use <str>.as_bytes().len() instead
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#disallowed_methods
# = note: requested on the command line with `-D clippy::disallowed-methods`
Error: CLIPPY_WARNING:
crates/tests-integration/src/container.rs:155:5: warning: matching on `Some` with `ok()` is redundant
# |
# 155 | if let Some(base) = std::env::var("BOOTC_base").ok() {
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#match_result_ok
# help: consider matching on `Ok(base)` and removing the call to `ok` instead
# |
# 155 - if let Some(base) = std::env::var("BOOTC_base").ok() {
# 155 + if let Ok(base) = std::env::var("BOOTC_base") {
# |