Skip to content

Commit 8032100

Browse files
committed
appease go vet
1 parent 41ca807 commit 8032100

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core_dsl.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,9 +362,9 @@ func extractSuiteConfiguration(args []any) (Labels, SemVerConstraints, Component
362362

363363
configErrors = types.VetConfig(flagSet, suiteConfig, reporterConfig)
364364
if len(configErrors) > 0 {
365-
fmt.Fprintf(formatter.ColorableStdErr, formatter.F("{{red}}Ginkgo detected configuration issues:{{/}}\n"))
365+
fmt.Fprint(formatter.ColorableStdErr, formatter.F("{{red}}Ginkgo detected configuration issues:{{/}}\n"))
366366
for _, err := range configErrors {
367-
fmt.Fprintf(formatter.ColorableStdErr, err.Error())
367+
fmt.Fprint(formatter.ColorableStdErr, err.Error())
368368
}
369369
os.Exit(1)
370370
}

0 commit comments

Comments
 (0)