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"