Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func (c *CSAPI) DoFunc(t *testing.T, method string, paths []string, opts ...Requ
}
// debug log the request
if c.Debug {
t.Logf("Making %s request to %s", method, reqURL)
t.Logf("Making %s request to %s", method, req.URL)
contentType := req.Header.Get("Content-Type")
Copy link
Collaborator Author

@MadLittleMods MadLittleMods Dec 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the difference just the ?prev_event_id=%241GidKbmhon-1habkcZokuhcjjvcLLQ5xq2FoVHrdk1E on the first line? Or does the second line also differ?

Just the first line

if contentType == "application/json" || strings.HasPrefix(contentType, "text/") {
if req.Body != nil {
Expand Down