Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/httptransport/transport_test.go')
-rw-r--r--internal/httptransport/transport_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/httptransport/transport_test.go b/internal/httptransport/transport_test.go
index 330d1022..60fbbb47 100644
--- a/internal/httptransport/transport_test.go
+++ b/internal/httptransport/transport_test.go
@@ -58,7 +58,7 @@ func Test_withRoundTripper(t *testing.T) {
err: tt.err,
}
- mtr := &meteredRoundTripper{next, gaugeVec, counterVec}
+ mtr := &meteredRoundTripper{next: next, durations: gaugeVec, counter: counterVec}
r := httptest.NewRequest("GET", "/", nil)
res, err := mtr.RoundTrip(r)