From 53df2788f4c876ddca75995096ffb5666a1c53c5 Mon Sep 17 00:00:00 2001 From: John Calabrese Date: Fri, 9 Feb 2018 01:21:27 -0500 Subject: [PATCH] fix metav1 import name --- pkg/kube/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kube/client_test.go b/pkg/kube/client_test.go index 42aa5cf77..c115950be 100644 --- a/pkg/kube/client_test.go +++ b/pkg/kube/client_test.go @@ -315,7 +315,7 @@ func (s *testCore) Namespaces() internalversion.NamespaceInterface { return s } -func (s *testCore) Get(name string, options apiv1.GetOptions) (*core.Namespace, error) { +func (s *testCore) Get(name string, options metav1.GetOptions) (*core.Namespace, error) { return nil, nil }