]> source.dussan.org Git - redmine.git/commitdiff
Fixed tests broken by r13646.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Nov 2014 21:07:44 +0000 (21:07 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 23 Nov 2014 21:07:44 +0000 (21:07 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@13648 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/user_test.rb

index 115868594b2f9038c91f6bb7fcf1ab6a6176253a..2da4b8fb6321e2b5915e0d811b230391c4a30b22 100644 (file)
@@ -622,7 +622,7 @@ class UserTest < ActiveSupport::TestCase
       ldap_user.login = 'example1'
       ldap_user.save!
 
-      assert_equal @ldap_user, User.try_to_login('example1', '123456')
+      assert_equal ldap_user, User.try_to_login('example1', '123456')
       assert_nil User.try_to_login('example1', '11111')
     end
 
@@ -653,7 +653,7 @@ class UserTest < ActiveSupport::TestCase
       end
 
       assert_no_difference('User.count') do
-        assert User.try_to_login('edavis', '123456')
+        assert User.try_to_login('example1', '123456')
       end
 
       assert_nil User.try_to_login('example1', '11111')