eth/downloader: goimports -w downloader_test.go

This commit is contained in:
Felix Lange 2020-04-08 00:12:46 +02:00
parent 636e0815f0
commit 2af1e34d7f

View file

@ -486,7 +486,9 @@ func TestCanonicalSynchronisation63Full(t *testing.T) { testCanonicalSynchronis
func TestCanonicalSynchronisation63Fast(t *testing.T) { testCanonicalSynchronisation(t, 63, FastSync) }
func TestCanonicalSynchronisation64Full(t *testing.T) { testCanonicalSynchronisation(t, 64, FullSync) }
func TestCanonicalSynchronisation64Fast(t *testing.T) { testCanonicalSynchronisation(t, 64, FastSync) }
func TestCanonicalSynchronisation64Light(t *testing.T) { testCanonicalSynchronisation(t, 64, LightSync) }
func TestCanonicalSynchronisation64Light(t *testing.T) {
testCanonicalSynchronisation(t, 64, LightSync)
}
func testCanonicalSynchronisation(t *testing.T, protocol int, mode SyncMode) {
t.Parallel()