gender neutral source comment at test/unit/issue_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11992 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-07-06 01:02:33 +00:00
parent 7ee06dfe08
commit b38de1f5e2
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ class IssueTest < ActiveSupport::TestCase
def test_visible_scope_for_member
user = User.find(9)
# User should see issues of projects for which he has view_issues permissions only
# User should see issues of projects for which user has view_issues permissions only
Role.non_member.remove_permission!(:view_issues)
Member.create!(:principal => user, :project_id => 3, :role_ids => [2])
issues = Issue.visible(user).all
@ -306,7 +306,7 @@ class IssueTest < ActiveSupport::TestCase
assert user.projects.empty?
issues = Issue.visible(user).all
assert issues.any?
# Admin should see issues on private projects that he does not belong to
# Admin should see issues on private projects that admin does not belong to
assert issues.detect {|issue| !issue.project.is_public?}
# Admin should see private issues of other users
assert issues.detect {|issue| issue.is_private? && issue.author != user}