Skip to content

Commit

Permalink
Mark medra test as fetcher test (#6969)
Browse files Browse the repository at this point in the history
Fix wrong entry
  • Loading branch information
Siedlerchr authored Oct 3, 2020
1 parent b93ae02 commit c8f7be8
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
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 org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
Expand All @@ -15,6 +16,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;

@FetcherTest
public class MedraTest {

private final Medra fetcher = new Medra();
Expand All @@ -32,7 +34,7 @@ private static Stream<Arguments> getDoiBibEntryPairs() {
.withField(StandardField.TITLE, "Algemene kroniek")
.withField(StandardField.YEAR, "2018")
.withField(StandardField.DOI, "10.2143/TVF.80.3.3285690")
.withField(StandardField.ISSN, "2031-8952")
.withField(StandardField.ISSN, "2031-8952, 2031-8952")
.withField(StandardField.JOURNAL, "Tijdschrift voor Filosofie")
.withField(StandardField.PAGES, "625-629")
)),
Expand Down Expand Up @@ -62,7 +64,7 @@ private static Stream<Arguments> getDoiBibEntryPairs() {
.withField(StandardField.AUTHOR, "Paola Cisternino")
.withField(StandardField.PUBLISHER, "Edizioni Otto Novecento")
.withField(StandardField.TITLE, "Diagramma semantico dei lemmi : casa, parola, silenzio e attesa in È fatto giorno e Margherite e rosolacci di Rocco Scotellaro")
.withField(StandardField.ISSN, "0391-2639")
.withField(StandardField.ISSN, "03912639")
.withField(StandardField.YEAR, "1999")
.withField(StandardField.DOI, "10.1400/115378")
.withField(StandardField.JOURNAL, "Otto/Novecento : rivista quadrimestrale di critica e storia letteraria")
Expand Down

0 comments on commit c8f7be8

Please sign in to comment.