diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-04-25 13:56:37 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-04-25 13:56:37 -0500 |
commit | b69da86ea545b342036fb37a472ec5abefaf3bd5 (patch) | |
tree | 91590afc783500eb48700fe93f1cc66bf493fcf2 /actionpack/test/dispatch | |
parent | 044794fc9e1235981d20172b96f3b34b044ad19c (diff) | |
download | rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.tar.gz rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.tar.bz2 rails-b69da86ea545b342036fb37a472ec5abefaf3bd5.zip |
Remove vendored version of Rack
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/request/multipart_params_parsing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/request/multipart_params_parsing_test.rb b/actionpack/test/dispatch/request/multipart_params_parsing_test.rb index 88b81dc493..6322cfc84a 100644 --- a/actionpack/test/dispatch/request/multipart_params_parsing_test.rb +++ b/actionpack/test/dispatch/request/multipart_params_parsing_test.rb @@ -96,7 +96,7 @@ class MultipartParamsParsingTest < ActionController::IntegrationTest # Ruby CGI doesn't handle multipart/mixed for us. files = params['files'] - assert_kind_of String, files + assert_kind_of Tempfile, files files.force_encoding('ASCII-8BIT') if files.respond_to?(:force_encoding) assert_equal 19756, files.size end |