Task #84353 - added.err

back to task #84353
download
Error: CLIPPY_WARNING:
crates/xtask/src/tmt.rs:235:32: warning: useless use of `format!`
#      |
#  235 |         .chain(std::iter::once(format!("--context=running_env=image_mode")))
#      |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"--context=running_env=image_mode".to_string()`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#useless_format
#      = note: `#[warn(clippy::useless_format)]` on by default

Error: CLIPPY_WARNING:
crates/xtask/src/tmt.rs:887:5: warning: calling `push_str()` using a single-character string literal
#      |
#  887 |     tests_content.push_str("\n");
#      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `push` with a character literal: `tests_content.push('\n')`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#single_char_add_str
#      = note: `#[warn(clippy::single_char_add_str)]` on by default