Paul Martin
2015-12-03 da29a4cfcdc35b50d9f56571f886ca355f452913
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);
   }