From b0a1dac9924f0d7f1037ada2af79a9bc423f6938 Mon Sep 17 00:00:00 2001 From: CodeLingo Bot Date: Mon, 11 Mar 2019 00:52:19 +0000 Subject: [PATCH] Fix function comments based on best practices from Effective Go Signed-off-by: CodeLingo Bot --- test/internal/e2e/kubebuildertest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/internal/e2e/kubebuildertest.go b/test/internal/e2e/kubebuildertest.go index 9916d7e9499..1461e859624 100644 --- a/test/internal/e2e/kubebuildertest.go +++ b/test/internal/e2e/kubebuildertest.go @@ -201,7 +201,7 @@ func (kt *KubebuilderTest) RunKubectlCommand(cmdOptions []string) (string, error return string(output), err } -// RunKubectlCommand is a general func to run kubectl commands +// RunKubectlCommandWithInput is a general func to run kubectl commands func (kt *KubebuilderTest) RunKubectlCommandWithInput(cmdOptions []string, stdinInput string) (string, error) { cmd := exec.Command("kubectl", cmdOptions...) stdin, err := cmd.StdinPipe()