/** */
@Test
public void testBadlyNamedUserFiltering() throws Exception {
fact().register(User.class);
User hd = new User();
hd.who = new com.google.appengine.api.users.User("samiam@gmail.com", "gmail.com");
ofy().save().entity(hd).now();
Query<User> q = ofy().load().type(User.class).filter("who", hd.who);