reduce time limit on TestStartStop because it is timing out on kvm_containerd

pull/10488/head
Priya Wadhwa 2021-02-16 10:24:43 -08:00
parent 7fdfcd164f
commit 2c3d91acef
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ func TestStartStop(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
MaybeParallel(t)
profile := UniqueProfileName(tc.name)
ctx, cancel := context.WithTimeout(context.Background(), Minutes(40))
ctx, cancel := context.WithTimeout(context.Background(), Minutes(30))
defer Cleanup(t, profile, cancel)
type validateStartStopFunc func(context.Context, *testing.T, string, string, string, []string)
if !strings.Contains(tc.name, "docker") && NoneDriver() {