From 8c91acdfea50d30364aeb50467a143300fa3f0a7 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 24 Nov 2019 13:19:27 +0000 Subject: [PATCH] cleanup: rubocop: fix Layout/SpaceInsideBlockBraces in test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19259 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- .../lib/redmine/wiki_formatting/textile_formatter_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index 803cbd5fc..04920d848 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -603,8 +603,8 @@ class Redmine::WikiFormatting::TextileFormatterTest < ActionView::TestCase # TODO: Remove this test after migrating to RedCloth 4 def test_should_not_crash_with_special_input - assert_nothing_raised { to_html(" \f") } - assert_nothing_raised { to_html(" \v") } + assert_nothing_raised {to_html(" \f")} + assert_nothing_raised {to_html(" \v")} end def test_should_not_handle_as_preformatted_text_tags_that_starts_with_pre -- 2.39.5