StatusResult status1 = repo.workingCopy().status();
Assert.assertArrayEquals(new String[] { "a" }, status1.getRemoved().toArray());
StatusResult status2 = repo.workingCopy().parent2Status();
Assert.assertTrue(status2.getRemoved().isEmpty());
keepDeleteConflict.keep();
Assert.assertTrue(a.exists());
status1 = repo.workingCopy().status();
Assert.assertTrue(status1.getRemoved().isEmpty());
status2 = repo.workingCopy().parent2Status();
Assert.assertTrue(status2.getRemoved().isEmpty());