Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fetcher tests #9466

Merged
merged 3 commits into from
Dec 17, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SemanticScholarTest implements PagedSearchFetcherTest {
.withField(StandardField.DOI, "10.1145/2884781.2884806")
.withField(StandardField.TITLE, "Overcoming Open Source Project Entry Barriers with a Portal for Newcomers")
.withField(StandardField.URL, "https://www.semanticscholar.org/paper/4bea2b4029a895bf898701329409e5a784fc2090")
.withField(StandardField.VENUE, "2016 IEEE/ACM 38th International Conference on Software Engineering (ICSE)");
.withField(StandardField.VENUE, "International Conference on Software Engineering");

private SemanticScholar fetcher;
private BibEntry entry;
Expand Down Expand Up @@ -167,7 +167,7 @@ public void findByEntry() throws Exception {
.withField(StandardField.YEAR, "2018")
.withField(StandardField.DOI, "10.1007/978-3-030-02302-7_1")
.withField(StandardField.URL, "https://www.semanticscholar.org/paper/3bb026fd67db7d8e0e25de3189d6b7031b12783e")
.withField(StandardField.VENUE, "PoEM");
.withField(StandardField.VENUE, "The Practice of Enterprise Modeling");

entry.withField(StandardField.TITLE, "Formalising BPMN Service Interaction Patterns");
BibEntry actual = fetcher.performSearch(entry).get(0);
Expand Down