Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/source/gitlab/gitlab_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/source/gitlab/gitlab_test.go b/internal/source/gitlab/gitlab_test.go
index df8299de..095fc2eb 100644
--- a/internal/source/gitlab/gitlab_test.go
+++ b/internal/source/gitlab/gitlab_test.go
@@ -164,8 +164,8 @@ func TestResolveLookupPathsConcurrentNetRequests(t *testing.T) {
cache := cache.NewCache(mockClient, &testhelpers.CacheConfig)
for i := 0; i < 3; i++ {
- go sendResolveRequest(t, wg, cache, test)
wg.Add(1)
+ go sendResolveRequest(t, wg, cache, test)
}
wg.Wait()