correct onerror behavior

Signed-off-by: spacexnice <yaoyao.xyy@alibaba-inc.com>
pull/1923/head
spacexnice 2016-08-26 09:41:54 +08:00
parent 22cf89c02b
commit 68243306fb
1 changed files with 4 additions and 5 deletions

View File

@ -102,25 +102,24 @@ func testAuthChallengeConcurrent(t *testing.T, host string) {
var s sync.WaitGroup
s.Add(2)
go func() {
defer s.Done()
for i := 0; i < 200; i++ {
err = scm.AddResponse(resp)
if err != nil {
t.Fatal(err)
t.Error(err)
}
}
s.Done()
}()
go func() {
defer s.Done()
lowered := *url
lowered.Host = strings.ToLower(lowered.Host)
for k := 0; k < 200; k++ {
_, err := scm.GetChallenges(lowered)
if err != nil {
t.Fatal(err)
t.Error(err)
}
}
s.Done()
}()
s.Wait()
}