aboutsummaryrefslogtreecommitdiff
path: root/http_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'http_test.go')
-rw-r--r--http_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http_test.go b/http_test.go
index a82f23e..5e2ce54 100644
--- a/http_test.go
+++ b/http_test.go
@@ -1210,7 +1210,7 @@ func TestRequestReadGzippedBody(t *testing.T) {
if r.Header.ContentLength() != len(body) {
t.Fatalf("unexpected content-length: %d. Expecting %d", r.Header.ContentLength(), len(body))
}
- if string(r.Body()) != string(body) {
+ if !bytes.Equal(r.Body(), body) {
t.Fatalf("unexpected body: %q. Expecting %q", r.Body(), body)
}
@@ -1323,7 +1323,7 @@ func TestRequestContinueReadBodyDisablePrereadMultipartForm(t *testing.T) {
t.Fatalf("The multipartForm of the Request must be nil")
}
- if string(formData) != string(r.Body()) {
+ if !bytes.Equal(formData, r.Body()) {
t.Fatalf("The body given must equal the body in the Request")
}
}