diff --git a/dependency-check-core/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java b/dependency-check-core/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java index 7677ef523..ae58686d7 100644 --- a/dependency-check-core/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java +++ b/dependency-check-core/src/test/java/org/owasp/dependencycheck/utils/DownloaderIntegrationTest.java @@ -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); }