cmd: fix log message typo

This commit is contained in:
gabriel-suela 2023-07-20 09:46:31 -03:00 committed by Nick Craig-Wood
parent 0957c8fb74
commit 9169b2b5ab

View file

@ -72,7 +72,7 @@ a bit of go code for each one.
Run: func(command *cobra.Command, args []string) { Run: func(command *cobra.Command, args []string) {
cmd.CheckArgs(1, 1e6, command, args) cmd.CheckArgs(1, 1e6, command, args)
if !checkNormalization && !checkControl && !checkLength && !checkStreaming && !all { if !checkNormalization && !checkControl && !checkLength && !checkStreaming && !all {
log.Fatalf("no tests selected - select a test or use -all") log.Fatalf("no tests selected - select a test or use --all")
} }
if all { if all {
checkNormalization = true checkNormalization = true