Skip to content

Commit 29f0568

Browse files
committed
Fix directory path
1 parent 912e1bf commit 29f0568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/flakeguard/runner/runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ func (r *Runner) parseTestResults(runPrefix string, runCount int) ([]reports.Tes
567567
// transformTestOutputFiles transforms the test output JSON files to ignore parent failures when only subtests fail.
568568
// It returns the paths to the transformed files.
569569
func (r *Runner) transformTestOutputFiles(filePaths []string) error {
570-
err := os.MkdirAll(RawOutputDir, 0o755)
570+
err := os.MkdirAll(RawOutputTransformedDir, 0o755)
571571
if err != nil {
572572
return fmt.Errorf("failed to create raw output directory: %w", err)
573573
}

0 commit comments

Comments
 (0)