fix import

This commit is contained in:
Murat Kabilov 2017-07-12 14:04:43 +02:00
parent 3fbe8ed7e0
commit 820ce85d4d
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"k8s.io/client-go/pkg/api/v1" meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/zalando-incubator/postgres-operator/pkg/spec" "github.com/zalando-incubator/postgres-operator/pkg/spec"
) )
@ -53,7 +53,7 @@ func TestRandomPassword(t *testing.T) {
} }
func TestNameFromMeta(t *testing.T) { func TestNameFromMeta(t *testing.T) {
meta := v1.ObjectMeta{ meta := meta_v1.ObjectMeta{
Name: "testcluster", Name: "testcluster",
Namespace: "default", Namespace: "default",
} }