lib: improve wait.For returns. (#1403)
This commit is contained in:
parent
e3d7c85cfc
commit
c53c3d08db
2 changed files with 6 additions and 1 deletions
|
@ -13,7 +13,7 @@ func TestForTimeout(t *testing.T) {
|
|||
})
|
||||
}()
|
||||
|
||||
timeout := time.After(5 * time.Second)
|
||||
timeout := time.After(6 * time.Second)
|
||||
select {
|
||||
case <-timeout:
|
||||
t.Fatal("timeout exceeded")
|
||||
|
@ -21,5 +21,6 @@ func TestForTimeout(t *testing.T) {
|
|||
if err == nil {
|
||||
t.Errorf("expected timeout error; got %v", err)
|
||||
}
|
||||
t.Logf("%v", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue