Commit ee91e340 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes a NoMethodError in tests with ruby 1.8.6.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4408 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 2fab7bd9
......@@ -562,7 +562,7 @@ class IssueTest < ActiveSupport::TestCase
assert_equal 2, assignable_user_ids.length
assignable_user_ids.each do |user_id|
assert_equal 1, assignable_user_ids.count(user_id), "User #{user_id} appears more or less than once"
assert_equal 1, assignable_user_ids.select {|i| i == user_id}.length, "User #{user_id} appears more or less than once"
end
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment