Updates for org move to vmware-tanzu (#1920)

* update import paths to github.com/vmware-tanzu/...

Signed-off-by: Steve Kriss <krisss@vmware.com>

* update other GH org refs to vmware-tanzu

Signed-off-by: Steve Kriss <krisss@vmware.com>

* site and docs: update GH org to vmware-tanzu

Signed-off-by: Steve Kriss <krisss@vmware.com>

* update travis badge links on docs readmes

Signed-off-by: Steve Kriss <krisss@vmware.com>
This commit is contained in:
Steve Kriss
2019-09-30 15:26:56 -06:00
committed by Nolan Brubaker
parent d96186473c
commit 48792ece1f
348 changed files with 1059 additions and 1059 deletions

View File

@@ -31,12 +31,12 @@ import (
core "k8s.io/client-go/testing"
"k8s.io/client-go/tools/cache"
velerov1api "github.com/heptio/velero/pkg/apis/velero/v1"
"github.com/heptio/velero/pkg/builder"
"github.com/heptio/velero/pkg/generated/clientset/versioned/fake"
informers "github.com/heptio/velero/pkg/generated/informers/externalversions"
"github.com/heptio/velero/pkg/metrics"
velerotest "github.com/heptio/velero/pkg/test"
velerov1api "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
"github.com/vmware-tanzu/velero/pkg/builder"
"github.com/vmware-tanzu/velero/pkg/generated/clientset/versioned/fake"
informers "github.com/vmware-tanzu/velero/pkg/generated/informers/externalversions"
"github.com/vmware-tanzu/velero/pkg/metrics"
velerotest "github.com/vmware-tanzu/velero/pkg/test"
)
func TestProcessSchedule(t *testing.T) {
@@ -337,7 +337,7 @@ func TestGetNextRunTime(t *testing.T) {
}
func TestParseCronSchedule(t *testing.T) {
// From https://github.com/heptio/velero/issues/30, where we originally were using cron.Parse(),
// From https://github.com/vmware-tanzu/velero/issues/30, where we originally were using cron.Parse(),
// which treats the first field as seconds, and not minutes. We want to use cron.ParseStandard()
// instead, which has the first field as minutes.