removed unused property in test case

Former-commit-id: 608279aaf7e507621454065a9f62f25883c61002
This commit is contained in:
Jeremy Long
2013-08-03 12:11:46 -04:00
parent 840b4d7619
commit d19ef8322e

View File

@@ -63,12 +63,14 @@ public class DownloaderIntegrationTest {
// Settings.setString(Settings.KEYS.PROXY_PORT, "8080");
// Settings.setString(Settings.KEYS.PROXY_URL, "127.0.0.1");
URL url = new URL(Settings.getString(Settings.KEYS.CPE_URL));
String outputPath = "target/downloaded_cpe.xml";
Downloader.fetchFile(url, outputPath, true);
url = new URL(Settings.getString(Settings.KEYS.CVE_MODIFIED_20_URL));
outputPath = "target/downloaded_cve.xml";
// Removed as the actual CPE is no longer used.
// URL url = new URL(Settings.getString(Settings.KEYS.CPE_URL));
// String outputPath = "target/downloaded_cpe.xml";
// Downloader.fetchFile(url, outputPath, true);
URL url = new URL(Settings.getString(Settings.KEYS.CVE_MODIFIED_20_URL));
String outputPath = "target/downloaded_cve.xml";
Downloader.fetchFile(url, outputPath, false);
}