Skip to content

Commit 31195ef

Browse files
committed
Run SpringerFetcherTests to verify functionality
1 parent 8e3defc commit 31195ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/jabref/logic/importer/fetcher/SpringerFetcherTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void setUp() {
2626
fetcher = new SpringerFetcher();
2727
}
2828

29-
@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
29+
//@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
3030
@Test
3131
void searchByQueryFindsEntry() throws Exception {
3232
BibEntry expected = new BibEntry(StandardEntryType.Article);
@@ -49,7 +49,7 @@ void searchByQueryFindsEntry() throws Exception {
4949
assertEquals(Collections.singletonList(expected), fetchedEntries);
5050
}
5151

52-
@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
52+
//@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
5353
@Test
5454
void testSpringerJSONToBibtex() {
5555
String jsonString = "{\r\n" + " \"identifier\":\"doi:10.1007/BF01201962\",\r\n"
@@ -73,7 +73,7 @@ void testSpringerJSONToBibtex() {
7373
assertEquals(Optional.of("1992-09-01"), bibEntry.getField(StandardField.DATE));
7474
}
7575

76-
@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
76+
//@DisabledOnCIServer("Disable on CI Server to not hit the API call limit")
7777
@Test
7878
void searchByEmptyQueryFindsNothing() throws Exception {
7979
assertEquals(Collections.emptyList(), fetcher.performSearch(""));

0 commit comments

Comments
 (0)