define aaa01 password

This commit is contained in:
Peter Hormanns 2012-07-20 10:16:15 +00:00
parent ae8b6b8965
commit eddaa92e4a

View File

@ -104,6 +104,18 @@ public class PacTest {
fail(e.getMessage());
}
assertEquals(count + 1, getPacsCount());
setParams = new HashMap<String, String>();
Map<String, String> whereParams = new HashMap<String, String>();
setParams.put("password", "test123");
whereParams.put("name", "aaa01");
params = new Object[] { user,
cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL()),
setParams, whereParams };
try {
client.execute("user.update", params);
} catch (XmlRpcException e) {
fail(e.getMessage());
}
}
// @Test