use of tech.sirwellington.alchemy.annotations.testing.TimeSensitive in project aroma-data-operations by RedRoma.
the class CassandraOrganizationRepositoryIT method testSaveOrganizationTwice.
@DontRepeat
@TimeSensitive
@Test
public void testSaveOrganizationTwice() throws Exception {
instance.saveOrganization(org);
Thread.sleep(5);
instance.saveOrganization(org);
Organization result = instance.getOrganization(orgId);
assertMostlyMatch(result, org);
}
Aggregations