diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-14 07:19:26 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-14 07:19:26 +0000 |
commit | 807df4fcf021fc4d15972aa1c17ba7398d43ab0d (patch) | |
tree | 97f6071e21b5c67418bf20788cbeac8597fff1cd | |
parent | 6f05696ceb2fe21b735c428c96c228705fc4c6c5 (diff) | |
download | rails-807df4fcf021fc4d15972aa1c17ba7398d43ab0d.tar.gz rails-807df4fcf021fc4d15972aa1c17ba7398d43ab0d.tar.bz2 rails-807df4fcf021fc4d15972aa1c17ba7398d43ab0d.zip |
Made test_rendering_nothing_on_layout acknowledge the space
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1831 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | actionpack/test/controller/new_render_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb index d76d7a3474..67529a825e 100644 --- a/actionpack/test/controller/new_render_test.rb +++ b/actionpack/test/controller/new_render_test.rb @@ -228,7 +228,7 @@ class NewRenderTest < Test::Unit::TestCase def test_rendering_nothing_on_layout get :rendering_nothing_on_layout - assert_equal "", @response.body + assert_equal " ", @response.body end def test_render_xml_with_layouts |