Skip to content

Commit

Permalink
style: formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jahvon committed Nov 17, 2024
1 parent 9ad53a9 commit 27f9df8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/runner/parallel/parallel.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func handleExec(
return nil
}

execs = append(execs, engine.Exec{ID: exec.Ref().ID(), Function: runExec, MaxRetries: refConfig.Retries})
execs = append(execs, engine.Exec{ID: exec.Ref().String(), Function: runExec, MaxRetries: refConfig.Retries})
}
results := eng.Execute(
ctx.Ctx, execs,
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func newTestContext(
}

func initTestDirectories(t ginkgo.FullGinkgoTInterface) (string, string, string) {
replacer := strings.NewReplacer("_", " ", "-", " ", "'", "+", "/", " ")
replacer := strings.NewReplacer("-", "", "'", "-", "/", "-", " ", "_")
tmpDir, err := os.MkdirTemp("", replacer.Replace(strings.ToLower(t.Name())))
if err != nil {
t.Fatalf("unable to create temp dir: %v", err)
Expand Down

0 comments on commit 27f9df8

Please sign in to comment.