style(tests): apply rustfmt to brittle-test hardening changes

This commit is contained in:
Chummy 2026-02-18 14:14:20 +08:00 committed by Chummy
parent 45cdd25b3d
commit 431287184b
4 changed files with 68 additions and 17 deletions

View file

@ -643,7 +643,10 @@ mod tests {
let (success, output) = run_agent_job(&config, &job).await;
assert!(!success, "Agent job without provider key should fail");
assert!(!output.is_empty(), "Expected non-empty error output from failed agent job");
assert!(
!output.is_empty(),
"Expected non-empty error output from failed agent job"
);
}
#[tokio::test]