Actions
Patch #33567
closedFix typo in watchers_controller.rb
Description
find_objets_from_params -> find_objects_from_params
Files
Updated by Go MAEDA over 4 years ago
- Target version set to 4.2.0
I found the same typos in another file.
diff --git a/test/helpers/watchers_helper_test.rb b/test/helpers/watchers_helper_test.rb
index ccbc80875..057b1bdd8 100644
--- a/test/helpers/watchers_helper_test.rb
+++ b/test/helpers/watchers_helper_test.rb
@@ -34,7 +34,7 @@ class WatchersHelperTest < Redmine::HelperTest
assert_equal expected, watcher_link(Issue.find(1), User.find(1))
end
- test '#watcher_link with a single objet array' do
+ test '#watcher_link with a single object array' do
expected = link_to(
"Watch",
"/watchers/watch?object_id=1&object_type=issue",
@@ -43,7 +43,7 @@ class WatchersHelperTest < Redmine::HelperTest
assert_equal expected, watcher_link([Issue.find(1)], User.find(1))
end
- test '#watcher_link with a multiple objets array' do
+ test '#watcher_link with a multiple objects array' do
expected = link_to(
"Watch",
"/watchers/watch?object_id%5B%5D=1&object_id%5B%5D=3&object_type=issue",
Updated by Go MAEDA over 4 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
Updated by Go MAEDA over 4 years ago
- Subject changed from fix a typo in watchers_controller.rb to Fix typo in watchers_controller.rb
Actions