[#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
|
var wg sync.WaitGroup
|
||||||
for i := uint64(0); i < size; i++ {
|
for i := uint64(0); i < size; i++ {
|
||||||
i := i
|
i := i
|
||||||
|
wg.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
p := filepath.Join(walletDir, innerring.GlagoliticLetter(i).String()+".json")
|
p := filepath.Join(walletDir, innerring.GlagoliticLetter(i).String()+".json")
|
||||||
|
|
Loading…
Reference in a new issue