mirror of https://github.com/k3s-io/k3s
Merge pull request #3497 from saad-ali/fix3495
Increase timeout for TestEtcdSourceExistingBoundPods testpull/6/head
commit
48adc8f458
|
@ -71,8 +71,8 @@ func TestEtcdSourceExistingBoundPods(t *testing.T) {
|
|||
update.Pods[1].ObjectMeta.Name != "bar" {
|
||||
t.Errorf("Unexpected update response: %#v", update)
|
||||
}
|
||||
case <-time.After(2 * time.Millisecond):
|
||||
t.Errorf("Expected update, timeout insteam")
|
||||
case <-time.After(200 * time.Millisecond):
|
||||
t.Errorf("Expected update, timeout instead")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue