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.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_chunked.rb b/test/spec_chunked.rb
index 7bbcfd92..dc6e8c9d 100644
--- a/test/spec_chunked.rb
+++ b/test/spec_chunked.rb
@@ -92,7 +92,7 @@ describe Rack::Chunked do
     body.join.must_equal 'Hello World!'
   end
 
-  [100, 204, 205, 304].each do |status_code|
+  [100, 204, 304].each do |status_code|
     it "not modify response when status code is #{status_code}" do
       app = lambda { |env| [status_code, {}, []] }
       status, headers, _ = chunked(app).call(@env)