Skip to content

Commit

Permalink
test for europeana role improved
Browse files Browse the repository at this point in the history
  • Loading branch information
SrdjanStevanetic committed Mar 6, 2024
1 parent 0cb80f6 commit cc2d9fe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,9 @@ public void retrieveOrganizationXmlExternalShouldBeSuccessful() throws Exception
.andExpect(
xpath(entityBaseXpath + "/skos:prefLabel", xmlNamespaces).nodeCount(greaterThan(0)))
.andExpect(xpath(entityBaseXpath + "/edm:country/@rdf:resource", xmlNamespaces).exists())
.andExpect(xpath(entityBaseXpath + "/edm:country/skos:prefLabel", xmlNamespaces).doesNotExist());
.andExpect(xpath(entityBaseXpath + "/edm:country/skos:prefLabel", xmlNamespaces).doesNotExist())
.andExpect(xpath(entityBaseXpath + "/edm:europeanaRole/@rdf:resource", xmlNamespaces).exists())
.andExpect(xpath(entityBaseXpath + "/edm:europeanaRole/skos:prefLabel", xmlNamespaces).doesNotExist());
}

@Test
Expand Down

0 comments on commit cc2d9fe

Please sign in to comment.