summaryrefslogtreecommitdiffstats
path: root/test/unit/user_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2017-01-08 08:24:07 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2017-01-08 08:24:07 +0000
commita1c37e7d6cd58d97b119f27605ba92453205c7a4 (patch)
tree7a9411322fdd3157045fcf296c5a3ce73e168d33 /test/unit/user_test.rb
parent84b880e1aa0de065ffb3aa8abe7f45853a217f28 (diff)
downloadredmine-a1c37e7d6cd58d97b119f27605ba92453205c7a4.tar.gz
redmine-a1c37e7d6cd58d97b119f27605ba92453205c7a4.zip
remove empty lines including white space from test/unit/user_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@16162 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/user_test.rb')
-rw-r--r--test/unit/user_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index eb9df3cef..ebc7d6532 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -875,7 +875,6 @@ class UserTest < ActiveSupport::TestCase
def test_roles_for_project_with_non_member_with_private_project_should_return_no_roles
Project.find(1).update_attribute :is_public, false
-
roles = User.find(8).roles_for_project(Project.find(1))
assert_equal [], roles.map(&:name)
end
@@ -903,7 +902,6 @@ class UserTest < ActiveSupport::TestCase
def test_roles_for_project_with_anonymous_with_private_project_should_return_no_roles
Project.find(1).update_attribute :is_public, false
-
roles = User.anonymous.roles_for_project(Project.find(1))
assert_equal [], roles.map(&:name)
end