diff --git a/pkg/kube/wait.go b/pkg/kube/wait.go index 03160df92..6150c793f 100644 --- a/pkg/kube/wait.go +++ b/pkg/kube/wait.go @@ -131,7 +131,7 @@ func (w *waiter) waitForResources(created Result) error { } case *corev1.ReplicationController: ok, err = w.podsReadyForObject(value.Namespace, value) - // TODO(Taylor): This works, but ends up with a possible race + // TODO(Taylor): This works, but ends up with a possible race // condition if some pods have not been scheduled yet. This logic // should be refactored to do similar checks to what is done for // Deployments diff --git a/pkg/registry/client_test.go b/pkg/registry/client_test.go index 9882afa62..5b2f06eb5 100644 --- a/pkg/registry/client_test.go +++ b/pkg/registry/client_test.go @@ -71,7 +71,7 @@ func (suite *RegistryClientTestSuite) SetupSuite() { // Init test client suite.RegistryClient = NewClient(&ClientOptions{ - Out: suite.Out, + Out: suite.Out, Authorizer: Authorizer{ Client: client, },