* TODO: Using the painUserContext, modifying the user returns this error:
* HTTP/1.1 401 Unauthorized
**/
@Test(enabled = false)
public void testListEventsFilteredByUser() {
User current = env.plainUserContext.getAdministrationService().getCurrentUser();
current.setEmail("test@test.com");
current.update();
EventOptions options = EventOptions.builder().dateFrom(new Date()).userName(current.getName()).build();
assertEvents(options);
}