From 7349a3a8b550593737e539170af3650890cfe2d6 Mon Sep 17 00:00:00 2001 From: Viacheslav Poturaev Date: Thu, 7 Dec 2023 21:27:40 +0100 Subject: [PATCH] Remove duplicate warning message --- cmd/godog/internal/cmd_root.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cmd/godog/internal/cmd_root.go b/cmd/godog/internal/cmd_root.go index f028435f..4978e274 100644 --- a/cmd/godog/internal/cmd_root.go +++ b/cmd/godog/internal/cmd_root.go @@ -1,12 +1,9 @@ package internal import ( - "fmt" - "github.com/spf13/cobra" "github.com/spf13/pflag" - "github.com/cucumber/godog/colors" "github.com/cucumber/godog/internal/flags" ) @@ -44,8 +41,6 @@ func runRootCmd(cmd *cobra.Command, args []string) error { } } - fmt.Println(colors.Yellow("Use of godog CLI is deprecated, please use *testing.T instead.")) - fmt.Println(colors.Yellow("See https://github.com/cucumber/godog/discussions/478 for details.")) return runCmdRunFunc(cmd, args) }