From 8d71620e111b86f8166d3106057bd959e1fa66c7 Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Tue, 7 Jul 2026 20:28:59 +0200 Subject: [PATCH] style(test): rustfmt the env-approval journey Co-Authored-By: Claude Opus 4.8 (1M context) --- crates/picloud-cli/tests/env_approval.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/picloud-cli/tests/env_approval.rs b/crates/picloud-cli/tests/env_approval.rs index c140b75..bda5767 100644 --- a/crates/picloud-cli/tests/env_approval.rs +++ b/crates/picloud-cli/tests/env_approval.rs @@ -28,7 +28,11 @@ fn gated_repo(dir: &Path, project: &str, group: &str) { ), ) .unwrap(); - fs::write(dir.join("picloud.production.toml"), "# production overlay\n").unwrap(); + fs::write( + dir.join("picloud.production.toml"), + "# production overlay\n", + ) + .unwrap(); fs::write(dir.join("picloud.staging.toml"), "# staging overlay\n").unwrap(); }