Attempts to fix go vet for circle

pull/4/head
Brian Bland 2014-12-10 11:09:14 -08:00
parent 9297693675
commit 8a555bbb5f
1 changed files with 27 additions and 33 deletions

View File

@ -90,8 +90,7 @@ func TestPush(t *testing.T) {
} }
} }
handler := testutil.NewHandler(append(blobRequestResponseMappings, testutil.RequestResponseMap{ handler := testutil.NewHandler(append(blobRequestResponseMappings, testutil.RequestResponseMapping{
{
Request: testutil.Request{ Request: testutil.Request{
Method: "PUT", Method: "PUT",
Route: "/v2/" + name + "/manifest/" + tag, Route: "/v2/" + name + "/manifest/" + tag,
@ -100,8 +99,7 @@ func TestPush(t *testing.T) {
Response: testutil.Response{ Response: testutil.Response{
StatusCode: http.StatusOK, StatusCode: http.StatusOK,
}, },
}, }))
}...))
server := httptest.NewServer(handler) server := httptest.NewServer(handler)
client := New(server.URL) client := New(server.URL)
objectStore := &memoryObjectStore{ objectStore := &memoryObjectStore{
@ -183,8 +181,7 @@ func TestPull(t *testing.T) {
} }
} }
handler := testutil.NewHandler(append(blobRequestResponseMappings, testutil.RequestResponseMap{ handler := testutil.NewHandler(append(blobRequestResponseMappings, testutil.RequestResponseMapping{
{
Request: testutil.Request{ Request: testutil.Request{
Method: "GET", Method: "GET",
Route: "/v2/" + name + "/manifest/" + tag, Route: "/v2/" + name + "/manifest/" + tag,
@ -193,8 +190,7 @@ func TestPull(t *testing.T) {
StatusCode: http.StatusOK, StatusCode: http.StatusOK,
Body: manifestBytes, Body: manifestBytes,
}, },
}, }))
}...))
server := httptest.NewServer(handler) server := httptest.NewServer(handler)
client := New(server.URL) client := New(server.URL)
objectStore := &memoryObjectStore{ objectStore := &memoryObjectStore{
@ -306,8 +302,7 @@ func TestPullResume(t *testing.T) {
} }
for i := 0; i < 3; i++ { for i := 0; i < 3; i++ {
layerRequestResponseMappings = append(layerRequestResponseMappings, testutil.RequestResponseMap{ layerRequestResponseMappings = append(layerRequestResponseMappings, testutil.RequestResponseMapping{
{
Request: testutil.Request{ Request: testutil.Request{
Method: "GET", Method: "GET",
Route: "/v2/" + name + "/manifest/" + tag, Route: "/v2/" + name + "/manifest/" + tag,
@ -316,8 +311,7 @@ func TestPullResume(t *testing.T) {
StatusCode: http.StatusOK, StatusCode: http.StatusOK,
Body: manifestBytes, Body: manifestBytes,
}, },
}, })
}...)
} }
handler := testutil.NewHandler(layerRequestResponseMappings) handler := testutil.NewHandler(layerRequestResponseMappings)