Codebase list golang-github-vbauerster-mpb / 1ba0aa8
refactoring decorators_test Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 package mpb_test
11
22 import (
3 "sync"
43 "testing"
54
65 "github.com/vbauerster/mpb/v8"
182181 }
183182
184183 for _, columnCase := range testCases {
185 var wg sync.WaitGroup
186 mpb.SyncWidth(&wg, toSyncMatrix(columnCase))
184 mpb.SyncWidth(toSyncMatrix(columnCase))
187185 var results []chan string
188186 for _, step := range columnCase {
189187 step := step
201199 t.Errorf("Want: %q, Got: %q\n", want, res)
202200 }
203201 }
204 wg.Wait()
205202 }
206203 }
207204