Skip to content

Commit

Permalink
chore: fix clippy::needless_borrow lint in journald tests (#2547)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Apr 21, 2023
1 parent 0192304 commit fd17727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-journald/tests/journal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn read_from_journal(test_name: &str) -> Vec<HashMap<String, Field>> {
let stdout = String::from_utf8(
Command::new("journalctl")
// We pass --all to circumvent journalctl's default limit of 4096 bytes for field values
.args(&["--user", "--output=json", "--all"])
.args(["--user", "--output=json", "--all"])
// Filter by the PID of the current test process
.arg(format!("_PID={}", std::process::id()))
.arg(format!("TEST_NAME={}", test_name))
Expand Down

0 comments on commit fd17727

Please sign in to comment.