Skip to content

Commit

Permalink
fixed bug on quality tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacedo committed Sep 7, 2017
1 parent d37dbf5 commit ee54d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pt/ptcris/utils/ORCIDFundingHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ else if (funding.getTitle().getTitle() == null)
res.add(INVALID_YEAR);
}

if (funding.getEndDate() != null && !!testQualityFuzzyDate(funding.getEndDate()))
if (funding.getEndDate() != null && !testQualityFuzzyDate(funding.getEndDate()))
res.add(INVALID_PUBLICATIONDATE);

Map<Funding, ExternalIdsDiff> fundingsDiffs = getSelfExternalIdsDiffS(funding, others);
Expand Down

0 comments on commit ee54d1b

Please sign in to comment.