diff --git a/internal/cache/file/downloader/job_manager_parallel_downloads_test.go b/internal/cache/file/downloader/job_manager_parallel_downloads_test.go index f4f8c615e3..47116deb97 100644 --- a/internal/cache/file/downloader/job_manager_parallel_downloads_test.go +++ b/internal/cache/file/downloader/job_manager_parallel_downloads_test.go @@ -122,6 +122,7 @@ func TestParallelDownloads(t *testing.T) { } for _, tc := range tbl { t.Run(tc.name, func(t *testing.T) { + t.Parallel() minObj, bucket, cache := CreateObjectInStoreAndInitCache(t, tc.objectSize) jm := NewJobManager(cache, util.DefaultFilePerm, util.DefaultDirPerm, cacheDir, 2, &config.FileCacheConfig{EnableParallelDownloads: true, DownloadParallelismPerFile: math.MaxInt, ReadRequestSizeMB: tc.readReqSize, EnableCrcCheck: true, MaxDownloadParallelism: tc.maxDownloadParallelism})