eth/downloader: fix test to it doesn't time out on a slow machine

This commit is contained in:
Péter Szilágyi 2015-05-20 10:15:42 +03:00
parent a3a5f8b593
commit 6f54eb6d9a

View File

@ -382,7 +382,7 @@ func TestRepeatingHashAttack(t *testing.T) {
// Make sure that syncing returns and does so with a failure
select {
case <-time.After(100 * time.Millisecond):
case <-time.After(time.Second):
t.Fatalf("synchronisation blocked")
case err := <-errc:
if err == nil {