Skip to content

Commit

Permalink
Merge pull request #6849 from ORCID/FixNPEOnNameCheck
Browse files Browse the repository at this point in the history
Fix more tests
  • Loading branch information
amontenegro authored Aug 4, 2023
2 parents 0a882a5 + 3e50fc3 commit eae8fab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void getAllTest() {
PersonExternalIdentifiers elements = externalIdentifierManager.getExternalIdentifiers(orcid);
assertNotNull(elements);
assertNotNull(elements.getExternalIdentifiers());
assertEquals(5, elements.getExternalIdentifiers().size());
assertEquals(7, elements.getExternalIdentifiers().size());
boolean found1 = false, found2 = false, found3 = false, found4 = false, found5 = false, found6 = false, found7 = false;
for(PersonExternalIdentifier element : elements.getExternalIdentifiers()) {
if(13 == element.getPutCode()){
Expand Down

0 comments on commit eae8fab

Please sign in to comment.