Commit e54d68d3 authored by Jacob Vosmaer's avatar Jacob Vosmaer

Add missing format string argument

parent 065f2c7e
...@@ -63,7 +63,7 @@ func TestGetInfoRefsProxiedToGitalySuccessfully(t *testing.T) { ...@@ -63,7 +63,7 @@ func TestGetInfoRefsProxiedToGitalySuccessfully(t *testing.T) {
_, body := httpGet(t, ws.URL+resource) _, body := httpGet(t, ws.URL+resource)
expectedContent := string(testhelper.GitalyInfoRefsResponseMock) expectedContent := string(testhelper.GitalyInfoRefsResponseMock)
assert.Equal(t, expectedContent, body, "GET %q: response body") assert.Equal(t, expectedContent, body, "GET %q: response body", resource)
} }
func TestPostReceivePackProxiedToGitalySuccessfully(t *testing.T) { func TestPostReceivePackProxiedToGitalySuccessfully(t *testing.T) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment