Skip to content

Commit

Permalink
Fix broken UT after develop merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeroucou committed Mar 21, 2024
1 parent 7a4a96d commit 87adc62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void testHugeSiteMap() throws IOException, ParseException, SAXException {
final List<Dataset> datasets = new ArrayList<>(nbDataset);
for (int i = 1; i <= nbDataset; i++) {
final Dataset published = new Dataset();
published.setGlobalId(new GlobalId(DOIServiceBean.DOI_PROTOCOL, "10.666", String.format("FAKE/published%s", i), null, DOIServiceBean.DOI_RESOLVER_URL, null));
published.setGlobalId(new GlobalId(AbstractDOIProvider.DOI_PROTOCOL, "10.666", String.format("FAKE/published%s", i), null, AbstractDOIProvider.DOI_RESOLVER_URL, null));
published.setPublicationDate(new Timestamp(new Date().getTime()));
published.setModificationTime(new Timestamp(new Date().getTime()));
datasets.add(published);
Expand Down

0 comments on commit 87adc62

Please sign in to comment.