remove underscore in imported pkg names

This commit is contained in:
Chao Xu
2016-02-16 09:54:53 -08:00
parent b165ba2e00
commit 97aecd002a
21 changed files with 99 additions and 99 deletions

View File

@@ -19,7 +19,7 @@ package executor
import (
"k8s.io/kubernetes/contrib/mesos/pkg/node"
"k8s.io/kubernetes/pkg/api"
core_unversioned "k8s.io/kubernetes/pkg/client/typed/generated/core/unversioned"
unversionedcore "k8s.io/kubernetes/pkg/client/typed/generated/core/unversioned"
)
type kubeAPI interface {
@@ -33,7 +33,7 @@ type nodeAPI interface {
// clientAPIWrapper implements kubeAPI and node API, which serve to isolate external dependencies
// such that they're easier to mock in unit test.
type clientAPIWrapper struct {
client core_unversioned.CoreInterface
client unversionedcore.CoreInterface
}
func (cw *clientAPIWrapper) killPod(ns, name string) error {