James Moger
2015-11-25 d1eb00e7e98ec4d932a632e52d336c43a4351cb4
src/test/java/com/gitblit/tests/AuthenticationManagerTest.java
@@ -657,11 +657,11 @@
      user.password = "password";
      users.updateUserModel(user);
      assertNotNull(auth.authenticate(user.username, user.password.toCharArray()));
      assertNotNull(auth.authenticate(user.username, user.password.toCharArray(), null));
      user.disabled = true;
      users.updateUserModel(user);
      assertNull(auth.authenticate(user.username, user.password.toCharArray()));
      assertNull(auth.authenticate(user.username, user.password.toCharArray(), null));
      users.deleteUserModel(user);
   }