Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
fix(e2e tests): make test compile
Browse files Browse the repository at this point in the history
e2e tests failed due to wrong import of the test dependency and
since the test starting script was buggy, the tests seemed to pass
even if they were failing, now the import has been fixed.
  • Loading branch information
surajssd committed Oct 23, 2017
1 parent b4cc937 commit 7400797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/tools/clientcmd"
v1 "k8s.io/kubernetes/pkg/api/v1"
)

/*
Expand Down

0 comments on commit 7400797

Please sign in to comment.