style(cli): re-fmt one stray format! line in the integration test
A trailing fmt drift on tests/cli.rs:95 — `format!()` arg was wrapped across three lines where rustfmt wants one. Running `cargo fmt --all` collapses it; no behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -95,9 +95,7 @@ fn run_flow(url: &str) {
|
|||||||
.args(["login"])
|
.args(["login"])
|
||||||
.assert()
|
.assert()
|
||||||
.success()
|
.success()
|
||||||
.stdout(predicate::str::contains(format!(
|
.stdout(predicate::str::contains(format!("Logged in as {username}")));
|
||||||
"Logged in as {username}"
|
|
||||||
)));
|
|
||||||
|
|
||||||
let creds_path = env.config_dir.join("credentials");
|
let creds_path = env.config_dir.join("credentials");
|
||||||
assert!(
|
assert!(
|
||||||
|
|||||||
Reference in New Issue
Block a user