File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/jabref/logic/importer/fetcher Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ("" ));
You can’t perform that action at this time.
0 commit comments