Attempts to fix go vet for circle

This commit is contained in:
Brian Bland 2014-12-10 11:09:14 -08:00
parent 9297693675
commit 8a555bbb5f

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