tests: tune flaky tests that error in travis occasionally (#18508)

* tests: tune flaky tests that error in travis occasionally

* tests: formatting
This commit is contained in:
Martin Holst Swende
2019-01-23 16:09:29 +01:00
committed by GitHub
parent a50b471b6b
commit dc43ea8d03
4 changed files with 8 additions and 5 deletions

View File

@ -244,7 +244,7 @@ func verifyImportEvent(t *testing.T, imported chan *types.Block, arrive bool) {
select {
case <-imported:
t.Fatalf("import invoked")
case <-time.After(10 * time.Millisecond):
case <-time.After(20 * time.Millisecond):
}
}
}