Task #92442 - added.err
back to task #92442download
Error: CLIPPY_WARNING: crates/tests-integration/src/container.rs:204:9: warning: needless call to `as_bytes` # | # 204 | digest.as_bytes().len(), # | ^^^^^^^^^^^^^^^^^^^^^^^ help: `len()` can be called directly on strings: `digest.len()` # | # = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_as_bytes # = note: `#[warn(clippy::needless_as_bytes)]` on by default Error: CLIPPY_WARNING: crates/tests-integration/src/container.rs:207:9: warning: needless call to `as_bytes` # | # 207 | digest.as_bytes().len() # | ^^^^^^^^^^^^^^^^^^^^^^^ help: `len()` can be called directly on strings: `digest.len()` # | # = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_as_bytes