swarm: processed with gofmt

refers to lash/go-ethereum@90daa7a68b
This commit is contained in:
nolash 2017-01-03 22:10:40 +01:00
parent 90daa7a68b
commit 5cb586c8ac
2 changed files with 26 additions and 29 deletions

View file

@ -1,17 +1,17 @@
package http package http
import ( import (
"testing" "bytes"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"bytes"
"sync" "sync"
"testing"
"time" "time"
"github.com/ethereum/go-ethereum/swarm/storage"
"github.com/ethereum/go-ethereum/swarm/api"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/swarm/api"
"github.com/ethereum/go-ethereum/swarm/storage"
) )
func TestBzzrGetPath(t *testing.T) { func TestBzzrGetPath(t *testing.T) {
@ -89,8 +89,6 @@ func TestBzzrGetPath(t *testing.T) {
break break
} }
for k, v := range testrequests { for k, v := range testrequests {
var body []byte var body []byte
var resp *http.Response var resp *http.Response
@ -107,5 +105,4 @@ func TestBzzrGetPath(t *testing.T) {
t.Log(string(body)) t.Log(string(body))
} }
} }