summaryrefslogtreecommitdiffstats
path: root/test/unit/user_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/user_test.rb')
-rw-r--r--test/unit/user_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index bb108549b..704728a60 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -61,8 +61,8 @@ class UserTest < ActiveSupport::TestCase
def test_sorted_scope_should_sort_user_by_display_name
# Use .active to ignore anonymous with localized display name
- assert_equal User.active.map(&:name).map(&:downcase).sort,
- User.active.sorted.map(&:name).map(&:downcase)
+ assert_equal User.active.map {|u| u.name.downcase}.sort,
+ User.active.sorted.map {|u| u.name.downcase}
end
def test_generate