diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-07-10 17:10:20 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-07-10 17:10:20 -0700 |
commit | e22e1c0b282f86901500da8bdb70c9d711e16066 (patch) | |
tree | 39db35f114581cfc090fe6f0c5334a4d127d241c /actionview | |
parent | 0d676d154547b7c8f1c5ba03c9d2e51c089d7732 (diff) | |
download | rails-e22e1c0b282f86901500da8bdb70c9d711e16066.tar.gz rails-e22e1c0b282f86901500da8bdb70c9d711e16066.tar.bz2 rails-e22e1c0b282f86901500da8bdb70c9d711e16066.zip |
Fixed borken tests in AV caused by 013c74d
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/test/actionpack/controller/render_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/test/actionpack/controller/render_test.rb b/actionview/test/actionpack/controller/render_test.rb index ab7b961ed2..cc65586c72 100644 --- a/actionview/test/actionpack/controller/render_test.rb +++ b/actionview/test/actionpack/controller/render_test.rb @@ -839,7 +839,7 @@ class RenderTest < ActionController::TestCase def test_render_text_with_nil get :render_text_with_nil assert_response 200 - assert_equal ' ', @response.body + assert_equal '', @response.body end # :ported: @@ -1027,7 +1027,7 @@ class RenderTest < ActionController::TestCase def test_rendering_nothing_on_layout get :rendering_nothing_on_layout - assert_equal " ", @response.body + assert_equal '', @response.body end def test_render_to_string_doesnt_break_assigns |