summary refs log tree commit
path: root/test/spec_chunked.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_chunked.rb')
-rw-r--r--test/spec_chunked.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/spec_chunked.rb b/test/spec_chunked.rb
index 18aad61d..3fcd4af2 100644
--- a/test/spec_chunked.rb
+++ b/test/spec_chunked.rb
@@ -30,18 +30,18 @@ describe Rack::Chunked do
     end
 
     def trailers
-      { "Expires" => "tomorrow" }
+      { "expires" => "tomorrow" }
     end
   end
 
   it 'yields trailer headers after the response' do
     app = lambda { |env|
-      [200, { "content-type" => "text/plain", "trailer" => "Expires" }, TrailerBody.new]
+      [200, { "content-type" => "text/plain", "trailer" => "expires" }, TrailerBody.new]
     }
     response = Rack::MockResponse.new(*chunked(app).call(@env))
     response.headers.wont_include 'content-length'
     response.headers['transfer-encoding'].must_equal 'chunked'
-    response.body.must_equal "5\r\nHello\r\n1\r\n \r\n6\r\nWorld!\r\n0\r\nExpires: tomorrow\r\n\r\n"
+    response.body.must_equal "5\r\nHello\r\n1\r\n \r\n6\r\nWorld!\r\n0\r\nexpires: tomorrow\r\n\r\n"
   end
 
   it 'chunk responses with no content-length' do