diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-06 12:03:58 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-06 12:03:58 +0000 |
commit | 1797f7abb0cdae35b27a294141a2612640f2f440 (patch) | |
tree | aa63de579bdbb2223e3fdb9879f8e16da413f2c5 /test/unit | |
parent | 9908565bde4a0a1e675acafc903e9488f9293b07 (diff) | |
download | redmine-1797f7abb0cdae35b27a294141a2612640f2f440.tar.gz redmine-1797f7abb0cdae35b27a294141a2612640f2f440.zip |
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/wiki_formatting/macros_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18926 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/macros_test.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/macros_test.rb b/test/unit/lib/redmine/wiki_formatting/macros_test.rb index 95b886e85..ddf53f582 100644 --- a/test/unit/lib/redmine/wiki_formatting/macros_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/macros_test.rb @@ -28,12 +28,12 @@ class Redmine::WikiFormatting::MacrosTest < Redmine::HelperTest extend ActionView::Helpers::SanitizeHelper::ClassMethods fixtures :projects, :roles, :enabled_modules, :users, - :repositories, :changesets, - :trackers, :issue_statuses, :issues, - :versions, :documents, - :wikis, :wiki_pages, :wiki_contents, - :boards, :messages, - :attachments + :repositories, :changesets, + :trackers, :issue_statuses, :issues, + :versions, :documents, + :wikis, :wiki_pages, :wiki_contents, + :boards, :messages, + :attachments def setup super @@ -346,7 +346,7 @@ RAW def test_macro_thumbnail_with_invalid_filename_should_fail assert_include 'test.png not found', - textilizable("{{thumbnail(test.png)}}", :object => Issue.find(14)) + textilizable("{{thumbnail(test.png)}}", :object => Issue.find(14)) end def test_macros_should_not_be_executed_in_pre_tags |