diff --git a/pkg/service/backup/service_backup_integration_test.go b/pkg/service/backup/service_backup_integration_test.go index e9146dca0..16e33c700 100644 --- a/pkg/service/backup/service_backup_integration_test.go +++ b/pkg/service/backup/service_backup_integration_test.go @@ -1209,7 +1209,8 @@ func TestBackupResumeIntegration(t *testing.T) { <-ctx.Done() select { - case <-time.After(backupTimeout): + // Added additional 5 seconds to include cloudmeta timeouts. + case <-time.After(backupTimeout + 5*time.Second): t.Fatalf("Backup failed to complete in under %s", backupTimeout) case <-done: Print("Then: backup completed execution")