diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-09-25 13:18:20 -0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-09-25 13:19:35 -0400 |
commit | f679933daa257a23095a6d7ad04aa2cbd3c7907e (patch) | |
tree | e1ebf6815655e7baa877da8738b715f29633f051 /actionview/test/activerecord | |
parent | d34bd0d2d55e33c757abd55fdd07ff575f68f185 (diff) | |
download | rails-f679933daa257a23095a6d7ad04aa2cbd3c7907e.tar.gz rails-f679933daa257a23095a6d7ad04aa2cbd3c7907e.tar.bz2 rails-f679933daa257a23095a6d7ad04aa2cbd3c7907e.zip |
Change the empty block style to have space inside of the block
Diffstat (limited to 'actionview/test/activerecord')
-rw-r--r-- | actionview/test/activerecord/debug_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/activerecord/debug_helper_test.rb b/actionview/test/activerecord/debug_helper_test.rb index 4be1023733..87a1791573 100644 --- a/actionview/test/activerecord/debug_helper_test.rb +++ b/actionview/test/activerecord/debug_helper_test.rb @@ -13,7 +13,7 @@ class DebugHelperTest < ActionView::TestCase end def test_debug_with_marshal_error - obj = -> {} + obj = -> { } assert_match obj.inspect, Nokogiri.XML(debug(obj)).content end end |