We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 815b18d commit 66ebfe3Copy full SHA for 66ebfe3
main_test.go
@@ -31,15 +31,15 @@ func TestSegmentReverseProxy(t *testing.T) {
31
if c.expectedServer == CDN {
32
fmt.Fprintln(w, "Hello, client")
33
} else {
34
- t.Errorf("CDN unexpected request: %f\n", r.URL)
+ t.Errorf("CDN unexpected request: %v\n", r.URL)
35
}
36
}))
37
38
trackingAPI := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
39
if c.expectedServer == TrackingAPI {
40
41
42
- t.Errorf("Tracking API unexpected request: %f\n", r.URL)
+ t.Errorf("Tracking API unexpected request: %v\n", r.URL)
43
44
45
0 commit comments