aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-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 2a58dadcf6..9f6381f118 100644
--- a/actionpack/test/dispatch/uploaded_file_test.rb
+++ b/actionpack/test/dispatch/uploaded_file_test.rb
@@ -33,7 +33,7 @@ module ActionDispatch
assert_equal 'foo', uf.tempfile
end
- def test_delegates_to_io_to_tempfile
+ def test_to_io_returns_the_tempfile
tf = Object.new
uf = Http::UploadedFile.new(:tempfile => tf)
assert_equal tf, uf.to_io