newUser.setLastName("Doe");
newUser.setEmail(createdEmail);
newUser.setCanLogIn(true);
newUser.setLanguage(I18nUtil.getDefaultLocale().getLanguage());
// Ensure EPerson is committed
newUser.update();
context.commit();
//Now, open a new context, and see if this eperson can be found!
Context newInstance = new Context();
EPerson found = EPerson.findByEmail(newInstance, createdEmail);