Wait longer in TestWatchControllers

10ms is too slow for travis
This commit is contained in:
Clayton Coleman 2015-03-24 17:25:24 -04:00
parent bac4689942
commit bfb6b05311

View File

@ -409,7 +409,7 @@ func TestWatchControllers(t *testing.T) {
select {
case <-received:
case <-time.After(10 * time.Millisecond):
case <-time.After(100 * time.Millisecond):
t.Errorf("Expected 1 call but got 0")
}
}