Skip to content

Commit

Permalink
Update TerariumAssetCloneServiceTests.java
Browse files Browse the repository at this point in the history
  • Loading branch information
YohannParis committed Jan 24, 2025
1 parent adc8748 commit c7d0e25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public void teardown() throws IOException {

static Grounding createGrounding(final String key) {
final Grounding grounding = new Grounding();
final Map<String, String> identifiers = new HashMap<>();
identifiers.put("curie", "maria-" + key);
final List<DKG> identifiers = new ArrayList<>();
identifiers.add(new DKG("curie", "maria", "", null, null));
grounding.setIdentifiers(identifiers);
final Map<String, String> context = new HashMap<>();
context.put("hello", "world-" + key);
Expand Down

0 comments on commit c7d0e25

Please sign in to comment.