// Test for regression of AURORA-702.
@Test
@Ignore("Flaky test - see https://issues.apache.org/jira/browse/AURORA-798")
public void testNoDeadlock() throws Exception {
final StorageTestUtil storageUtil = new StorageTestUtil(this);
expect(storageUtil.storeProvider.getLockStore()).andReturn(storageUtil.lockStore).times(2);
expect(storageUtil.lockStore.fetchLock(LOCK_KEY)).andReturn(Optional.<ILock>absent()).times(2);
final CountDownLatch reads = new CountDownLatch(2);