]> source.dussan.org Git - redmine.git/commitdiff
gender neutral source comment at test/unit/issue_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 6 Jul 2013 01:02:33 +0000 (01:02 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 6 Jul 2013 01:02:33 +0000 (01:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11992 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/issue_test.rb

index 6b6b59b808cc13261857694d14c75b802ad90cf5..ecebb262ee0445a86a9c437b42bd6f0e5b6de771 100644 (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}