mirror of https://github.com/hashicorp/consul
agent/local: don't use time.After in test since notify is instant
parent
6be4fa9118
commit
9f128e40d6
|
@ -1627,7 +1627,7 @@ func TestAgent_AliasCheck(t *testing.T) {
|
||||||
l.UpdateCheck(types.CheckID("c1"), api.HealthCritical, "")
|
l.UpdateCheck(types.CheckID("c1"), api.HealthCritical, "")
|
||||||
select {
|
select {
|
||||||
case <-notifyCh:
|
case <-notifyCh:
|
||||||
case <-time.After(100 * time.Millisecond):
|
default:
|
||||||
t.Fatal("notify not received")
|
t.Fatal("notify not received")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1653,7 +1653,7 @@ func TestAgent_AliasCheck(t *testing.T) {
|
||||||
l.UpdateCheck(types.CheckID("c1"), api.HealthPassing, "")
|
l.UpdateCheck(types.CheckID("c1"), api.HealthPassing, "")
|
||||||
select {
|
select {
|
||||||
case <-notifyCh:
|
case <-notifyCh:
|
||||||
case <-time.After(100 * time.Millisecond):
|
default:
|
||||||
t.Fatal("notify not received")
|
t.Fatal("notify not received")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue