change github.com/kubernetes-sigs to sigs.k8s.io (#343)

* change github.com/kubernetes-sigs to sigs.k8s.io

* change go_import_path in .travis.yml
This commit is contained in:
Jingfang Liu
2018-09-12 12:41:38 -07:00
committed by GitHub
parent a377ec1dde
commit 64fdb8d760
80 changed files with 184 additions and 184 deletions

View File

@@ -20,7 +20,7 @@ import (
"strings"
"testing"
"github.com/kubernetes-sigs/kustomize/pkg/constants"
"sigs.k8s.io/kustomize/pkg/constants"
)
func TestConfigmapError_Error(t *testing.T) {

View File

@@ -21,7 +21,7 @@ import (
"strings"
"testing"
"github.com/kubernetes-sigs/kustomize/pkg/constants"
"sigs.k8s.io/kustomize/pkg/constants"
)
func TestKustomizationError_Error(t *testing.T) {

View File

@@ -20,7 +20,7 @@ import (
"strings"
"testing"
"github.com/kubernetes-sigs/kustomize/pkg/constants"
"sigs.k8s.io/kustomize/pkg/constants"
)
func TestPatchError_Error(t *testing.T) {

View File

@@ -20,7 +20,7 @@ import (
"strings"
"testing"
"github.com/kubernetes-sigs/kustomize/pkg/constants"
"sigs.k8s.io/kustomize/pkg/constants"
)
func TestResourceError_Error(t *testing.T) {

View File

@@ -21,8 +21,8 @@ import (
"fmt"
"testing"
"github.com/kubernetes-sigs/kustomize/pkg/constants"
"k8s.io/apimachinery/pkg/util/yaml"
"sigs.k8s.io/kustomize/pkg/constants"
)
var (

View File

@@ -18,8 +18,8 @@ limitations under the License.
package loadertest
import (
"github.com/kubernetes-sigs/kustomize/pkg/fs"
"github.com/kubernetes-sigs/kustomize/pkg/loader"
"sigs.k8s.io/kustomize/pkg/fs"
"sigs.k8s.io/kustomize/pkg/loader"
)
// FakeLoader encapsulates the delegate Loader and the fake file system.