From 339a3f45f0557f5f8b4a3210461e78091a4ecada Mon Sep 17 00:00:00 2001 From: Zeke Foppa Date: Mon, 4 May 2026 14:03:32 -0700 Subject: [PATCH] [bfops/cargo-test-all]: fix --- crates/typescript-tests/tests/typescript.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/typescript-tests/tests/typescript.rs b/crates/typescript-tests/tests/typescript.rs index 79f30845a..64671728a 100644 --- a/crates/typescript-tests/tests/typescript.rs +++ b/crates/typescript-tests/tests/typescript.rs @@ -89,8 +89,8 @@ fn run_tests(cwd: &Path, report: &Path, filter: Option, passthrough: Vec .with_context(|| format!("failed to spawn `{command_line}` in {}", cwd.display()))?; ensure_success(cwd, &command_line, status)?; - let results = parse_junit(&report).with_context(|| "failed to parse TypeScript Vitest JUnit report")?; - print_results("typescript", &report, &results)?; + let results = parse_junit(report).with_context(|| "failed to parse TypeScript Vitest JUnit report")?; + print_results("typescript", report, &results)?; Ok(()) }