diff options
author | Jamis Buck <jamis@37signals.com> | 2005-07-04 15:20:25 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-07-04 15:20:25 +0000 |
commit | cf9c991d4cdcf1cb9511d4b070ed83ca5cb5bc03 (patch) | |
tree | 394f9b874d5c53529475e7d4bdf389f8e0a07a9d | |
parent | f5db702901408d7d74a3dec0cb6cdcaf987223dd (diff) | |
download | rails-cf9c991d4cdcf1cb9511d4b070ed83ca5cb5bc03.tar.gz rails-cf9c991d4cdcf1cb9511d4b070ed83ca5cb5bc03.tar.bz2 rails-cf9c991d4cdcf1cb9511d4b070ed83ca5cb5bc03.zip |
Fix test broken by [1648]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1663 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/test/controller/action_pack_assertions_test.rb | 2 |
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 -------------------------------- |