[#600] adm/tests: Add missing WaitGroup.Add()

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

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
pull/603/head
Evgenii Stratonikov 2023-08-11 12:13:09 +03:00 committed by Evgenii Stratonikov
parent 4d2af137e9
commit abdb0910cc
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")