aboutsummaryrefslogtreecommitdiffstats
path: root/eth/fetcher
diff options
context:
space:
mode:
authorMartin Holst Swende <martin@swende.se>2019-01-23 23:09:29 +0800
committerGitHub <noreply@github.com>2019-01-23 23:09:29 +0800
commitdc43ea8d0394d9336ea7a3e2a920f3b55bb3189d (patch)
tree91fe94dd3d1131a718ad3ef579d1a5d43348ede1 /eth/fetcher
parenta50b471b6b9c54eba795b74f6d74a09d531af9dc (diff)
downloadgo-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar.gz
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar.bz2
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar.lz
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar.xz
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.tar.zst
go-tangerine-dc43ea8d0394d9336ea7a3e2a920f3b55bb3189d.zip
tests: tune flaky tests that error in travis occasionally (#18508)
* tests: tune flaky tests that error in travis occasionally * tests: formatting
Diffstat (limited to 'eth/fetcher')
-rw-r--r--eth/fetcher/fetcher_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/fetcher/fetcher_test.go b/eth/fetcher/fetcher_test.go
index 3d4f0d1e5..a86e773e3 100644
--- a/eth/fetcher/fetcher_test.go
+++ b/eth/fetcher/fetcher_test.go
@@ -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):
}
}
}