[#600] adm/tests: Add missing WaitGroup.Add()
Vulncheck / Vulncheck (pull_request) Successful in 10m13s Details
Build / Build Components (1.21) (pull_request) Successful in 12m24s Details
Build / Build Components (1.20) (pull_request) Successful in 13m46s Details
Tests and linters / Staticcheck (pull_request) Successful in 16m2s Details
Tests and linters / Tests (1.21) (pull_request) Failing after 19m12s Details
Tests and linters / Tests (1.20) (pull_request) Failing after 21m0s Details
Tests and linters / Lint (pull_request) Successful in 21m47s Details
Tests and linters / Tests with -race (pull_request) Failing after 22m17s Details

```
panic: sync: negative WaitGroup counter
```

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
pull/601/head
Evgenii Stratonikov 2023-08-11 12:13:09 +03:00
parent b44a8dd46c
commit f28c32c74f
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ func TestGenerateAlphabet(t *testing.T) {
var wg sync.WaitGroup
for i := uint64(0); i < size; i++ {
i := i
wg.Add(1)
go func() {
defer wg.Done()
p := filepath.Join(walletDir, innerring.GlagoliticLetter(i).String()+".json")