mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-06-11 01:41:54 -04:00
Merge pull request #1049 from brendandburns/flake
Fix a flake by extending the time out, so we don't race a go routine.
This commit is contained in:
commit
e1a361a84b
1 changed files with 1 additions and 1 deletions
|
|
@ -425,7 +425,7 @@ func TestWatchFromOtherError(t *testing.T) {
|
|||
if ok {
|
||||
t.Fatalf("expected result channel to be closed")
|
||||
}
|
||||
case <-time.After(1 * time.Millisecond):
|
||||
case <-time.After(1 * time.Second):
|
||||
t.Fatalf("watch should have closed channel: %#v", watching)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue