aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/uploaded_file_test.rb
diff options
context:
space:
mode:
authorLukáš Konarovský <daeltar@gmail.com>2011-06-15 03:09:27 -0700
committerLukáš Konarovský <daeltar@gmail.com>2011-06-15 03:09:27 -0700
commitc0d82ba03018795433e7443131705cb03d7ee4c7 (patch)
tree654f5c01a53ad9784744cbad137cacd72e84b378 /actionpack/test/dispatch/uploaded_file_test.rb
parent6ab3da62083773cc507851694324cfb413f07ea8 (diff)
downloadrails-c0d82ba03018795433e7443131705cb03d7ee4c7.tar.gz
rails-c0d82ba03018795433e7443131705cb03d7ee4c7.tar.bz2
rails-c0d82ba03018795433e7443131705cb03d7ee4c7.zip
Use assert_equal instead of assert in uploaded file test.
Diffstat (limited to 'actionpack/test/dispatch/uploaded_file_test.rb')
-rw-r--r--actionpack/test/dispatch/uploaded_file_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/uploaded_file_test.rb b/actionpack/test/dispatch/uploaded_file_test.rb
index 44c15694f7..7e4a1519fb 100644
--- a/actionpack/test/dispatch/uploaded_file_test.rb
+++ b/actionpack/test/dispatch/uploaded_file_test.rb
@@ -16,7 +16,7 @@ module ActionDispatch
if "ruby".encoding_aware?
def test_filename_should_be_in_utf_8
uf = Http::UploadedFile.new(:filename => 'foo', :tempfile => Object.new)
- assert "UTF-8", uf.original_filename.encoding.to_s
+ assert_equal "UTF-8", uf.original_filename.encoding.to_s
end
end