diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-05-30 05:45:22 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-06-08 18:23:58 +0800 |
commit | 9da0232eef7e7abd9f036fccb231220e272e6049 (patch) | |
tree | 9721064b4b7be27dcc4163a8725397fa63e0a70f /eth/downloader/downloader_test.go | |
parent | 0275fcb3d3979d14e01b4e0b9980be6d0cafbc8d (diff) | |
download | dexon-9da0232eef7e7abd9f036fccb231220e272e6049.tar.gz dexon-9da0232eef7e7abd9f036fccb231220e272e6049.tar.zst dexon-9da0232eef7e7abd9f036fccb231220e272e6049.zip |
eth/downloader: update test for shitty travis
Diffstat (limited to 'eth/downloader/downloader_test.go')
-rw-r--r-- | eth/downloader/downloader_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/downloader/downloader_test.go b/eth/downloader/downloader_test.go index 288072164..cab213499 100644 --- a/eth/downloader/downloader_test.go +++ b/eth/downloader/downloader_test.go @@ -274,7 +274,7 @@ func TestThrottling(t *testing.T) { // Iteratively take some blocks, always checking the retrieval count for total := 0; total < targetBlocks; { // Sleep a bit for sync to complete - time.Sleep(250 * time.Millisecond) + time.Sleep(500 * time.Millisecond) // Fetch the next batch of blocks took := tester.downloader.TakeBlocks() |