diff options
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/raw_post_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/raw_post_test.rb b/actionpack/test/controller/raw_post_test.rb index b6895bc3cc..c9816484b7 100644 --- a/actionpack/test/controller/raw_post_test.rb +++ b/actionpack/test/controller/raw_post_test.rb @@ -11,7 +11,7 @@ class RawPostDataTest < Test::Unit::TestCase def test_post_with_urlencoded_body ENV['REQUEST_METHOD'] = 'POST' - ENV['CONTENT_TYPE'] = 'application/x-www-form-urlencoded' + ENV['CONTENT_TYPE'] = ' apPlication/x-Www-form-urlEncoded; charset=utf-8' assert_equal ['1'], cgi_params['a'] assert_has_raw_post_data end |