summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/helpers/application_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb
index 606941736..4d522fdc9 100644
--- a/test/helpers/application_helper_test.rb
+++ b/test/helpers/application_helper_test.rb
@@ -1522,7 +1522,7 @@ class ApplicationHelperTest < Redmine::HelperTest
def test_render_page_hierarchy
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]}
result = render_page_hierarchy(pages_by_parent_id, nil)
assert_select_in(
result, 'ul.pages-hierarchy li a[href=?]',