aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-27 09:29:01 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-27 09:29:17 -0700
commitdde063507ac40fda1a67f06a54c1a57d237f57b2 (patch)
treef4dc762f9fb1cb4f6ae17468e739aea661d26bfe /actionpack/test/dispatch
parentc2b4da1c425dd8e1cc6606d49aea53e4f7521b91 (diff)
downloadrails-dde063507ac40fda1a67f06a54c1a57d237f57b2.tar.gz
rails-dde063507ac40fda1a67f06a54c1a57d237f57b2.tar.bz2
rails-dde063507ac40fda1a67f06a54c1a57d237f57b2.zip
Can't please them all
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/request/multipart_params_parsing_test.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/request/multipart_params_parsing_test.rb b/actionpack/test/dispatch/request/multipart_params_parsing_test.rb
index aaf647e45a..9e008a9ae8 100644
--- a/actionpack/test/dispatch/request/multipart_params_parsing_test.rb
+++ b/actionpack/test/dispatch/request/multipart_params_parsing_test.rb
@@ -94,9 +94,8 @@ class MultipartParamsParsingTest < ActionController::IntegrationTest
assert_equal %w(files foo), params.keys.sort
assert_equal 'bar', params['foo']
- # Ruby CGI doesn't handle multipart/mixed for us.
+ # Rack doesn't handle multipart/mixed for us.
files = params['files']
- assert_not_kind_of Hash, files
files.force_encoding('ASCII-8BIT') if files.respond_to?(:force_encoding)
assert_equal 19756, files.size
end