Skip to content

Commit dbd61e3

Browse files
authored
Merge pull request #30068 from flavianmissi/OCPBUGS-58037
OCPBUGS-58037: increase timeout of image extract test
2 parents 004e2b6 + 173c7d0 commit dbd61e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/extended/images/extract.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55
"fmt"
66
"strings"
7+
"time"
78

89
"github.com/MakeNowJust/heredoc"
910
g "github.com/onsi/ginkgo/v2"
@@ -111,6 +112,6 @@ var _ = g.Describe("[sig-imageregistry][Feature:ImageExtract] Image extract", fu
111112
oc image extract --insecure %[1]s --file=/etc/shadow
112113
[ -f /tmp/test3/shadow ]
113114
`, extractImage)))
114-
cli.WaitForSuccess(context.TODO(), pod.Name, podStartupTimeout)
115+
cli.WaitForSuccess(context.TODO(), pod.Name, 5*time.Minute)
115116
})
116117
})

0 commit comments

Comments
 (0)