aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/send_file_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-06-26 11:58:02 +0200
committerJosé Valim <jose.valim@gmail.com>2009-06-26 11:58:02 +0200
commit915f108d6a47b9c29e11ebe0b140ef017eb015b0 (patch)
treeae0c42330a9fbdc8395f8a5bae4605ef455c18c1 /actionpack/test/controller/send_file_test.rb
parentaee63a12f2cfd110725c74686ae1eed58e18fda7 (diff)
parentb5dfdc714fab7d2836e0a979ca88b4a17db9ec06 (diff)
downloadrails-915f108d6a47b9c29e11ebe0b140ef017eb015b0.tar.gz
rails-915f108d6a47b9c29e11ebe0b140ef017eb015b0.tar.bz2
rails-915f108d6a47b9c29e11ebe0b140ef017eb015b0.zip
Merge branch 'master' of git://github.com/rails/rails
Diffstat (limited to 'actionpack/test/controller/send_file_test.rb')
-rw-r--r--actionpack/test/controller/send_file_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb
index d88d5c5dac..ae32ee5649 100644
--- a/actionpack/test/controller/send_file_test.rb
+++ b/actionpack/test/controller/send_file_test.rb
@@ -115,7 +115,7 @@ class SendFileTest < ActionController::TestCase
@controller.send(:send_file_headers!, options)
h = @controller.headers
- assert_equal 1, h['Content-Length']
+ assert_equal '1', h['Content-Length']
assert_equal 'image/png', @controller.content_type
assert_equal 'disposition; filename="filename"', h['Content-Disposition']
assert_equal 'binary', h['Content-Transfer-Encoding']