From a981864b8ef6b80dbf532db0fe51c8ca5b0c4918 Mon Sep 17 00:00:00 2001 From: InAnYan Date: Thu, 3 Oct 2024 12:21:01 +0300 Subject: [PATCH] Fix checkers --- .../java/org/jabref/logic/importer/WebFetchersTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/jabref/logic/importer/WebFetchersTest.java b/src/test/java/org/jabref/logic/importer/WebFetchersTest.java index d339ce08e19..44f646ddd39 100644 --- a/src/test/java/org/jabref/logic/importer/WebFetchersTest.java +++ b/src/test/java/org/jabref/logic/importer/WebFetchersTest.java @@ -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; @@ -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)); }