removed test for deleteExistingData (which was also removed from the class being tested)

Former-commit-id: b806b2a0f2e106347be7482443938709b3c8d976
This commit is contained in:
Jeremy Long
2014-01-03 14:05:01 -05:00
parent 5d857c731f
commit 4687c7dcda

View File

@@ -73,21 +73,6 @@ public class StandardUpdateIntegrationTest {
assertEquals(expResult, result);
}
/**
* Test of deleteExistingData method, of class StandardUpdate.
*/
@Test
public void testDeleteExistingData() throws Exception {
StandardUpdate instance = getStandardUpdateTask();
Exception result = null;
try {
instance.deleteExistingData();
} catch (IOException ex) {
result = ex;
}
assertNull(result);
}
/**
* Test of openDataStores method, of class StandardUpdate.
*/