From: Go MAEDA Date: Sun, 19 Nov 2023 07:30:08 +0000 (+0000) Subject: Fix typo in test names in application_helper_test.rb: Change "redner" to "render... X-Git-Tag: 6.0.0~620 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d6b86ca53d67cbeaf2455e325507710ec7c8c4b0;p=redmine.git Fix typo in test names in application_helper_test.rb: Change "redner" to "render" (#39527). git-svn-id: https://svn.redmine.org/redmine/trunk@22465 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 180066b17..a46e6c22a 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -2186,12 +2186,12 @@ class ApplicationHelperTest < Redmine::HelperTest assert_match(/name="new_issue-[a-z0-9]{8}"/, labelled_form_for(Issue.new){}) end - def test_redner_if_exist_should_be_render_partial + def test_render_if_exist_should_be_render_partial controller.prepend_view_path "test/fixtures/views" assert_equal "partial html\n", render_if_exist(:partial => 'partial') end - def test_redner_if_exist_should_be_render_nil + def test_render_if_exist_should_be_render_nil controller.prepend_view_path "test/fixtures/views" assert_nil render_if_exist(:partial => 'non_exist_partial') end