/** Test password change */
 @Ignore
 @Test
 public void testPasswordChange() throws Exception {
   System.out.println(">>> Changing password");
   UserTransaction tx = getUserTransaction();
   try {
     AdminEJBLocal instance = (AdminEJBLocal) getEJBInstance(AdminEJB.class.getSimpleName());
     tx.begin();
     instance.changePassword("usr", "test");
     tx.commit();
   } catch (Exception e) {
     tx.rollback();
     fail(e.getMessage());
   }
 }