mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-10 22:34:39 -05:00
Log information wrong while wait.ForeverTestTimeout
This commit is contained in:
parent
4fdde68f78
commit
9be345cb8f
2 changed files with 4 additions and 4 deletions
|
|
@ -481,7 +481,7 @@ func TestWatchControllers(t *testing.T) {
|
|||
select {
|
||||
case <-received:
|
||||
case <-time.After(wait.ForeverTestTimeout):
|
||||
t.Errorf("Expected 1 call but got 0")
|
||||
t.Errorf("unexpected timeout from result channel")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -528,7 +528,7 @@ func TestWatchPods(t *testing.T) {
|
|||
select {
|
||||
case <-received:
|
||||
case <-time.After(wait.ForeverTestTimeout):
|
||||
t.Errorf("Expected 1 call but got 0")
|
||||
t.Errorf("unexpected timeout from result channel")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -466,7 +466,7 @@ func TestWatchControllers(t *testing.T) {
|
|||
select {
|
||||
case <-received:
|
||||
case <-time.After(wait.ForeverTestTimeout):
|
||||
t.Errorf("Expected 1 call but got 0")
|
||||
t.Errorf("unexpected timeout from result channel")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -512,7 +512,7 @@ func TestWatchPods(t *testing.T) {
|
|||
select {
|
||||
case <-received:
|
||||
case <-time.After(wait.ForeverTestTimeout):
|
||||
t.Errorf("Expected 1 call but got 0")
|
||||
t.Errorf("unexpected timeout from result channel")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue