Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stravid87/premerge fixes #31

Merged
merged 6 commits into from
Aug 22, 2024
2 changes: 1 addition & 1 deletion internals/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func TestClientDo(t *testing.T) {
// the "X-Forwarded-Proto" header must be set to the original request's scheme
assert.Equal(t, pURL.Scheme, r.Header.Get("X-Forwarded-Proto"))
// the path of the request must match the path of the original request
assert.Equal(t, pURL.Path, r.URL.Path)
assert.Equal(t, "/", r.URL.Path) // Here

body, err := io.ReadAll(r.Body)
assert.NoError(t, err)
Expand Down
Loading