final Nomination updatedNomination = producer.getById(UPDATE_DATA_SET, objectMetadata.getId(), Nomination.class);
//UNDONE(willpugh) -- Turn back on when bug 7102 is fixed.
//TestCase.assertTrue(EqualsBuilder.reflectionEquals(nominationUpdate, updatedNomination));
List l = Lists.newArrayList(new DeleteRecord(objectMetadata.getId(), true));
ObjectMapper m = new ObjectMapper();
System.out.println(m.writeValueAsString(l));
UpsertResult result = producer.upsert(UPDATE_DATA_SET, l);
try {
final Nomination deletedNomination = producer.getById(UPDATE_DATA_SET, objectMetadata.getId(), Nomination.class);