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

Former-commit-id: 001b6c1870b7a91e11042ee7f7b46e67b6e0e36e
This commit is contained in:
Jeremy Long
2014-01-03 14:05:01 -05:00
parent ca08887dca
commit ca5ce25dee

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.
*/