Paul Martin
2016-04-30 a502d96a860456ec5e8c96761db70f7cabb74751
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);
   }