remove spaces inside {} of ApplicationHelperTest#test_render_page_hierarchy_when_action_is_export

git-svn-id: http://svn.redmine.org/redmine/trunk@19905 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-07-15 16:36:55 +00:00
parent 579ae4f6e8
commit 752fbb160c

View File

@@ -1552,7 +1552,7 @@ class ApplicationHelperTest < Redmine::HelperTest
def test_render_page_hierarchy_when_action_is_export
parent_page = WikiPage.find(1)
child_page = WikiPage.find_by(parent_id: parent_page.id)
pages_by_parent_id = { nil => [parent_page], parent_page.id => [child_page] }
pages_by_parent_id = {nil => [parent_page], parent_page.id => [child_page]}
# Change controller and action using stub
controller.stubs(:controller_name).returns('wiki')