From cc60f15558ae1949d45118f3b8db2099b1a67071 Mon Sep 17 00:00:00 2001 From: PK Jacob Date: Thu, 12 Mar 2026 09:55:41 -0400 Subject: [PATCH] MODLD-1011: Update predicate url in test --- .../linked/data/e2e/mappings/hub/creator/HubCreatorIT.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/folio/linked/data/e2e/mappings/hub/creator/HubCreatorIT.java b/src/test/java/org/folio/linked/data/e2e/mappings/hub/creator/HubCreatorIT.java index cfc4a481e..2538f0790 100644 --- a/src/test/java/org/folio/linked/data/e2e/mappings/hub/creator/HubCreatorIT.java +++ b/src/test/java/org/folio/linked/data/e2e/mappings/hub/creator/HubCreatorIT.java @@ -52,7 +52,7 @@ protected String postPayload() { "_contributorReference":[ { "id":"2", - "roles":[ "http://bibfra.me/vocab/relation/sponsoringbody" ] + "roles":[ "http://bibfra.me/vocab/relation/sponsoringBody" ] } ] } @@ -79,7 +79,7 @@ protected void validateApiResponse(ResultActions apiResponse) { .andExpect(jsonPath(hubPath + "['_contributorReference'][0]['type']") .value("http://bibfra.me/vocab/lite/Jurisdiction")) .andExpect(jsonPath(hubPath + "['_contributorReference'][0]['roles']", containsInAnyOrder( - "http://bibfra.me/vocab/relation/sponsoringbody"))); + "http://bibfra.me/vocab/relation/sponsoringBody"))); } @Override @@ -103,7 +103,7 @@ protected void validateGraph(Resource hub) { assertThat(contributor.getId()).isEqualTo(2L); assertThat(contributor.getLabel()).isEqualTo("United States"); - var sponsoringBody = getFirstOutgoingResource(hub, "http://bibfra.me/vocab/relation/sponsoringbody"); + var sponsoringBody = getFirstOutgoingResource(hub, "http://bibfra.me/vocab/relation/sponsoringBody"); assertThat(contributor).isEqualTo(sponsoringBody); }