forked from TrueCloudLab/frostfs-node
[#600] adm/tests: Add missing WaitGroup.Add()
``` panic: sync: negative WaitGroup counter ``` Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
4d2af137e9
commit
abdb0910cc
1 changed files with 1 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue