From d02eed94d9d3edd94d72857313080a2fea2ebc96 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 9 Dec 2020 14:12:00 +0000 Subject: shorten long line of SearchHelperTest git-svn-id: http://svn.redmine.org/redmine/trunk@20593 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/helpers/search_helper_test.rb | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/helpers/search_helper_test.rb b/test/helpers/search_helper_test.rb index 9632089ae..53e85f3e1 100644 --- a/test/helpers/search_helper_test.rb +++ b/test/helpers/search_helper_test.rb @@ -29,8 +29,12 @@ class SearchHelperTest < Redmine::HelperTest end def test_highlight_multiple_tokens - assert_equal 'This is a token and another token.', - highlight_tokens('This is a token and another token.', %w(token another)) + assert_equal( + 'This is a token and ' \ + 'another ' \ + 'token.', + highlight_tokens('This is a token and another token.', %w(token another)) + ) end def test_highlight_should_not_exceed_maximum_length @@ -43,6 +47,11 @@ class SearchHelperTest < Redmine::HelperTest def test_highlight_multibyte s = ('й' * 200) + ' token ' + ('й' * 200) r = highlight_tokens(s, %w(token)) - assert_equal ('й' * 45) + ' ... ' + ('й' * 44) + ' token ' + ('й' * 44) + ' ... ' + ('й' * 45), r + assert_equal( + ('й' * 45) + ' ... ' + ('й' * 44) + + ' token ' + + ('й' * 44) + ' ... ' + ('й' * 45), + r + ) end end -- cgit v1.2.3