aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/action_pack_assertions_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb
index 2cf9c72f45..bccff5ab98 100644
--- a/actionpack/test/controller/action_pack_assertions_test.rb
+++ b/actionpack/test/controller/action_pack_assertions_test.rb
@@ -209,13 +209,13 @@ class ActionPackAssertionsControllerTest < Test::Unit::TestCase
process :hello_world
assert_rendered_file 'test/hello_world'
assert_rendered_file 'hello_world'
- assert_rendered_file
end
# test the assert_success assertion
def test_assert_success
process :nothing
assert_success
+ assert_rendered_file
end
# -- standard request/response object testing --------------------------------