]> source.dussan.org Git - redmine.git/commitdiff
add space after comma to test/unit/auth_source_ldap_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 4 Nov 2020 14:43:18 +0000 (14:43 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 4 Nov 2020 14:43:18 +0000 (14:43 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20244 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/auth_source_ldap_test.rb

index 2b317b694463262451884d4999e793e32ee50705..abbdbb7ce56d1c643cff35e61f24f84a36bad81d 100644 (file)
@@ -123,7 +123,7 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
       auth = AuthSourceLdap.find(1)
       auth.update_attribute :onthefly_register, true
 
-      attributes =  auth.authenticate('example1','123456')
+      attributes =  auth.authenticate('example1', '123456')
       assert attributes.is_a?(Hash), "An hash was not returned"
       assert_equal 'Example', attributes[:firstname]
       assert_equal 'One', attributes[:lastname]
@@ -136,22 +136,22 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
 
     test '#authenticate with an invalid LDAP user should return nil' do
       auth = AuthSourceLdap.find(1)
-      assert_nil auth.authenticate('nouser','123456')
+      assert_nil auth.authenticate('nouser', '123456')
     end
 
     test '#authenticate without a login should return nil' do
       auth = AuthSourceLdap.find(1)
-      assert_nil auth.authenticate('','123456')
+      assert_nil auth.authenticate('', '123456')
     end
 
     test '#authenticate without a password should return nil' do
       auth = AuthSourceLdap.find(1)
-      assert_nil auth.authenticate('edavis','')
+      assert_nil auth.authenticate('edavis', '')
     end
 
     test '#authenticate without filter should return any user' do
       auth = AuthSourceLdap.find(1)
-      assert auth.authenticate('example1','123456')
+      assert auth.authenticate('example1', '123456')
       assert auth.authenticate('edavis', '123456')
     end
 
@@ -159,7 +159,7 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
       auth = AuthSourceLdap.find(1)
       auth.filter = "(mail=*@redmine.org)"
 
-      assert auth.authenticate('example1','123456')
+      assert auth.authenticate('example1', '123456')
       assert_nil auth.authenticate('edavis', '123456')
     end