Change test to avoid warnings.

This commit is contained in:
Emilio Tagua
2010-09-28 18:38:25 -03:00
parent 34fc109549
commit 783e9b8de5

View File

@@ -68,7 +68,7 @@ class MultipartParamsParsingTest < ActionDispatch::IntegrationTest
assert_equal 'file.txt', file.original_filename
assert_equal "text/plain", file.content_type
assert ('a' * 20480) == file.read
assert_equal(('a' * 20480), file.read)
end
test "parses binary file" do