Skip to content

Commit

Permalink
Fix checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
InAnYan committed Oct 3, 2024
1 parent aebd8ac commit a981864
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/jabref/logic/importer/WebFetchersTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
import org.jabref.logic.importer.fetcher.GvkFetcher;
import org.jabref.logic.importer.fetcher.IssnFetcher;
import org.jabref.logic.importer.fetcher.JstorFetcher;
import org.jabref.logic.importer.fetcher.LlmCitationFetcher;
import org.jabref.logic.importer.fetcher.MrDLibFetcher;
import org.jabref.logic.importer.fetcher.isbntobibtex.DoiToBibtexConverterComIsbnFetcher;
import org.jabref.logic.importer.fetcher.isbntobibtex.EbookDeIsbnFetcher;
import org.jabref.logic.importer.fetcher.isbntobibtex.OpenLibraryIsbnFetcher;
import org.jabref.logic.importer.plaincitation.GrobidPlainCitationParser;
import org.jabref.logic.importer.plaincitation.LlmPlainCitationParser;
import org.jabref.model.database.BibDatabaseContext;

import io.github.classgraph.ClassGraph;
Expand Down Expand Up @@ -138,8 +138,8 @@ void getSearchBasedFetchersReturnsAllFetcherDerivingFromSearchBasedFetcher() {
expected.remove(PagedSearchBasedFetcher.class);

// Remove GROBID and LLM, because we don't want to show this to the user (since they convert text to BibTeX)
expected.remove(GrobidCitationFetcher.class);
expected.remove(LlmCitationFetcher.class);
expected.remove(GrobidPlainCitationParser.class);
expected.remove(LlmPlainCitationParser.class);

assertEquals(expected, getClasses(searchBasedFetchers));
}
Expand Down

0 comments on commit a981864

Please sign in to comment.