Commit 065f4457 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix a fine point in this test-case: We can get a Content-Length on

a 304 response, but we still don't get the body.
parent 4b33a2fc
......@@ -25,13 +25,13 @@ client c1 {
txreq -url "/foo" \
-hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:01 GMT"
rxresp
rxresp -no_obj
expect resp.status == 304
expect resp.http.etag == "foo"
txreq -url "/foo" \
-hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:02 GMT"
rxresp
rxresp -no_obj
expect resp.status == 304
expect resp.http.etag == "foo"
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment