Skip to content

Commit 4f1c91b

Browse files
committed
Fix for TestStorageVersionMigrationWithCRD integration test failure
Signed-off-by: Anish Ramasekar <[email protected]>
1 parent a2a7090 commit 4f1c91b

File tree

1 file changed

+2
-1
lines changed
  • test/integration/storageversionmigrator

1 file changed

+2
-1
lines changed

test/integration/storageversionmigrator/util.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import (
3333
"time"
3434

3535
clientv3 "go.etcd.io/etcd/client/v3"
36+
3637
corev1 "k8s.io/api/core/v1"
3738
svmv1alpha1 "k8s.io/api/storagemigration/v1alpha1"
3839
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
@@ -1002,7 +1003,7 @@ func (svm *svmTest) isCRDMigrated(ctx context.Context, t *testing.T, crdSVMName
10021003
err := wait.PollUntilContextTimeout(
10031004
ctx,
10041005
500*time.Millisecond,
1005-
wait.ForeverTestTimeout,
1006+
1*time.Minute,
10061007
true,
10071008
func(ctx context.Context) (bool, error) {
10081009
triggerCR := svm.createCR(ctx, t, "triggercr", "v1")

0 commit comments

Comments
 (0)