From dba35d0e18ad701f30927d5d217434843cc50aee Mon Sep 17 00:00:00 2001 From: "Matt Moore (via sockpuppet)" Date: Wed, 1 May 2019 14:00:34 +0000 Subject: [PATCH] golang format tools Produced via: `gofmt -s -w $(find -path './vendor' -prune -o -type f -name '*.go' -print))` `goimports -w $(find -name '*.go' | grep -v vendor)` --- pkg/reconciler/namespace/namespace.go | 1 + pkg/reconciler/namespace/namespace_test.go | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/reconciler/namespace/namespace.go b/pkg/reconciler/namespace/namespace.go index 00ca22b34d1..d696fb8d4f0 100644 --- a/pkg/reconciler/namespace/namespace.go +++ b/pkg/reconciler/namespace/namespace.go @@ -19,6 +19,7 @@ package namespace import ( "context" "fmt" + "github.com/knative/eventing/pkg/reconciler/namespace/resources" "github.com/knative/eventing/pkg/utils" "github.com/knative/pkg/tracker" diff --git a/pkg/reconciler/namespace/namespace_test.go b/pkg/reconciler/namespace/namespace_test.go index 5af66e14fc7..3a54fc1d4a8 100644 --- a/pkg/reconciler/namespace/namespace_test.go +++ b/pkg/reconciler/namespace/namespace_test.go @@ -17,9 +17,10 @@ limitations under the License. package namespace import ( - "github.com/knative/pkg/tracker" "testing" + "github.com/knative/pkg/tracker" + "github.com/knative/eventing/pkg/reconciler/namespace/resources" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema"