diff --git a/cmd/dependabot/dependabot_test.go b/cmd/dependabot/dependabot_test.go index cb8e050..13a8a89 100644 --- a/cmd/dependabot/dependabot_test.go +++ b/cmd/dependabot/dependabot_test.go @@ -34,10 +34,8 @@ func TestDependabot(t *testing.T) { // Commands returns the commands that can be used in the scripts. // Each line of the scripts are -// So if you enter "dependabot update go_modules rsc/quote", it will run -// the Dependabot() function with args "update go_modules rsc/quote". -// When you use "echo" in the scripts it's actually running the echo command -// from the scripttest package. +// When you use "echo" in the scripts it's actually running script.Echo +// not the echo binary on your system. func Commands() map[string]script.Cmd { commands := scripttest.DefaultCmds() wd, _ := os.Getwd()