removed duplicate test case

Former-commit-id: 10cd3b0fbfc6cac87c162faa6d6a329a978e0de7
This commit is contained in:
Jeremy Long
2013-08-29 16:41:41 -04:00
parent df441dc581
commit 7e193d7dd1

View File

@@ -63,19 +63,4 @@ public class DatabaseUpdaterIntegrationTest {
DatabaseUpdater instance = new DatabaseUpdater();
instance.update();
}
/**
* Test of update method (when in batch mode), of class DatabaseUpdater.
*
* @throws Exception
*/
@Test
public void testBatchUpdate() throws Exception {
File file = new File(this.getClass().getClassLoader().getResource("data.zip").toURI());
String path = "file:///" + file.getCanonicalPath();
Settings.setString(Settings.KEYS.BATCH_UPDATE_URL, path);
DatabaseUpdater instance = new DatabaseUpdater();
instance.update();
Settings.setString(Settings.KEYS.BATCH_UPDATE_URL, "");
}
}