git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19728
e93f8b46-1217-0410-a6f0-
8f06a7374b81
def user_collection_for_select_options(time_entry)
collection = time_entry.assignable_users
- collection << time_entry.user unless time_entry.user.nil? && !collection.include?(time_entry.user)
+ collection << time_entry.user if time_entry.user && !collection.include?(time_entry.user)
principals_options_for_select(collection, time_entry.user_id.to_s)
end
assert_response :success
assert_select 'select[name=?]', 'time_entry[user_id]' do
- assert_select 'option[value="2"][selected=selected]'
+ assert_select 'option[value="2"][selected=selected]', 1
end
end