diff --git a/e2e-tests/shared-dimensions/term-set.hydra b/e2e-tests/shared-dimensions/term-set.hydra index d8a99916b..d522ea81b 100644 --- a/e2e-tests/shared-dimensions/term-set.hydra +++ b/e2e-tests/shared-dimensions/term-set.hydra @@ -12,7 +12,6 @@ ENTRYPOINT "dimension/technologies" HEADERS { x-user "john-doe" x-permission "pipelines:write" - x-email "john@doe.tech" } With Class meta:SharedDimension { @@ -45,10 +44,6 @@ With Class meta:SharedDimension { Expect Property oa:canonical { Expect Id } - Expect Property dcterms:contributor { - Expect Property schema:name "John Doe" - Expect Property schema:email "john@doe.tech" - } } Invoke { @@ -92,11 +87,19 @@ With Class meta:SharedDimension { schema:validFrom "2021-01-20T23:59:59Z"^^xsd:dateTime ; schema:validThrough "2022-01-20T23:59:59Z"^^xsd:dateTime ; sh:property [ ] ; + dcterms:contributor [ + schema:name "Jane Doe" ; + schema:email "jane@doe.tech" ; + ] ; . ``` } => { Expect Status 200 Expect Property schema:validThrough + Expect Property dcterms:contributor { + Expect Property schema:name "Jane Doe" + Expect Property schema:email "jane@doe.tech" + } } } } diff --git a/e2e-tests/shared-dimensions/term-sets.hydra b/e2e-tests/shared-dimensions/term-sets.hydra index 3981b6e08..f6f0f23aa 100644 --- a/e2e-tests/shared-dimensions/term-sets.hydra +++ b/e2e-tests/shared-dimensions/term-sets.hydra @@ -4,12 +4,14 @@ PREFIX schema: PREFIX qudt: PREFIX meta: PREFIX sh: +PREFIX dcterms: ENTRYPOINT "dimension/" HEADERS { x-user "john-doe" x-permission "pipelines:write" + x-email "john@doe.tech" } With Class hydra:Resource { @@ -52,6 +54,10 @@ With Class hydra:Resource { Expect Property schema:name Expect Property qudt:scaleType Expect Property meta:dataKind + Expect Property dcterms:contributor { + Expect Property schema:name "john-doe" + Expect Property schema:email "john@doe.tech" + } } }