diff --git a/src/test/java/org/jabref/logic/importer/ACMPortalParserTest.java b/src/test/java/org/jabref/logic/importer/fileformat/ACMPortalParserTest.java similarity index 97% rename from src/test/java/org/jabref/logic/importer/ACMPortalParserTest.java rename to src/test/java/org/jabref/logic/importer/fileformat/ACMPortalParserTest.java index 94d5cf9a54b..245461167c9 100644 --- a/src/test/java/org/jabref/logic/importer/ACMPortalParserTest.java +++ b/src/test/java/org/jabref/logic/importer/fileformat/ACMPortalParserTest.java @@ -1,4 +1,4 @@ -package org.jabref.logic.importer; +package org.jabref.logic.importer.fileformat; import java.io.IOException; import java.net.CookieHandler; @@ -9,11 +9,13 @@ import java.util.Collections; import java.util.List; -import org.jabref.logic.importer.fileformat.ACMPortalParser; +import org.jabref.logic.importer.FetcherException; +import org.jabref.logic.importer.ParseException; import org.jabref.logic.net.URLDownload; import org.jabref.model.entry.BibEntry; import org.jabref.model.entry.field.StandardField; import org.jabref.model.entry.types.StandardEntryType; +import org.jabref.testutils.category.FetcherTest; import com.microsoft.applicationinsights.core.dependencies.http.client.utils.URIBuilder; import org.junit.jupiter.api.BeforeEach; @@ -21,6 +23,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; +@FetcherTest public class ACMPortalParserTest { ACMPortalParser parser;