Another little repair for long customer names.
This commit is contained in:
parent
cb4741b9f7
commit
b20dfaf643
@ -60,7 +60,7 @@ public class LongCustomerNameTest {
|
||||
Map<String, String> setParams = new HashMap<String, String>();
|
||||
setParams.put("membercode", "hsh00-##");
|
||||
setParams.put("password", "geheimnIs");
|
||||
setParams.put("memberno", "3000##");
|
||||
setParams.put("memberno", "2000##");
|
||||
setParams.put("membersince", "01.10.2010");
|
||||
setParams.put("contact_salut", "Herr");
|
||||
setParams.put("contact_title", "Dr.");
|
||||
@ -79,7 +79,7 @@ public class LongCustomerNameTest {
|
||||
// client.execute(CUSTMODULE + ".add", params);
|
||||
for (int idx=lo; idx <= hi; idx++) {
|
||||
setParams.put("membercode", "hsh00-n" + idx);
|
||||
setParams.put("memberno", "3000" + idx);
|
||||
setParams.put("memberno", "" + (20000 + idx));
|
||||
setParams.put("contact_street", "Hauptstr. " + idx);
|
||||
params[1] = cas.getServiceTicket(grantingTicketURL, RemoteTestHelper.getBackendURL());
|
||||
client.execute(CUSTMODULE + ".add", params);
|
||||
|
Loading…
Reference in New Issue
Block a user