if (rhContacts != null)
{
assertEquals("No Red Hat contacts remain", 0, rhContacts.size());
}
tester.updateContacts("Kabir", "Updated");
for (Integer id : jbContacts)
{
Contact contact = tester.getContact(id);
assertNotNull("JBoss contact " + id + " exists", contact);
String expected = ("Kabir".equals(contact.getName())) ? "Updated" : "2222";