diff --git a/test/e2e/storage/drivers/in_tree.go b/test/e2e/storage/drivers/in_tree.go index 4b22e38b4a7..aaaa3d37bf1 100644 --- a/test/e2e/storage/drivers/in_tree.go +++ b/test/e2e/storage/drivers/in_tree.go @@ -1908,9 +1908,9 @@ func (v *azureFileVolume) DeleteVolume() { } func (a *azureDiskDriver) GetTimeouts() *framework.TimeoutContext { - return &framework.TimeoutContext{ - PodStart: time.Minute * 15, - PodDelete: time.Minute * 15, - PVDelete: time.Minute * 20, - } + timeouts := framework.NewTimeoutContextWithDefaults() + timeouts.PodStart = time.Minute * 15 + timeouts.PodDelete = time.Minute * 15 + timeouts.PVDelete = time.Minute * 20 + return timeouts }