@@ -51,7 +51,7 @@ describe('Test editing Unit', () => {
5151 cy . getUpdatedRDF ( ) . then ( rdf => {
5252 expect ( rdf ) . to . contain ( 'Quantifiable1 a samm-c:Quantifiable' ) ;
5353 expect ( rdf ) . to . contain ( 'samm-c:unit :CustomUnit1' ) ;
54- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
54+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
5555 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
5656 } ) ;
5757 } ) ;
@@ -80,8 +80,8 @@ describe('Test editing Unit', () => {
8080 cy . getUpdatedRDF ( ) . then ( rdf => {
8181 expect ( rdf ) . to . contain ( 'Quantifiable1 a samm-c:Quantifiable' ) ;
8282 expect ( rdf ) . to . contain ( 'samm-c:unit :CustomUnit2' ) ;
83- expect ( rdf ) . to . contain ( 'CustomUnit2 a unit :Unit' ) ;
84- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
83+ expect ( rdf ) . to . contain ( 'CustomUnit2 a samm :Unit' ) ;
84+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
8585 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
8686
8787 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit1' ) ;
@@ -102,8 +102,8 @@ describe('Test editing Unit', () => {
102102 . then ( ( ) => {
103103 cy . getUpdatedRDF ( ) . then ( rdf => {
104104 expect ( rdf ) . to . contain ( 'Quantifiable1 a samm-c:Quantifiable' ) ;
105- expect ( rdf ) . to . contain ( 'CustomUnit2 a unit :Unit' ) ;
106- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
105+ expect ( rdf ) . to . contain ( 'CustomUnit2 a samm :Unit' ) ;
106+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
107107 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
108108
109109 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit1' ) ;
@@ -135,10 +135,10 @@ describe('Test editing Unit', () => {
135135 . then ( ( ) =>
136136 cy . getUpdatedRDF ( ) . then ( rdf => {
137137 expect ( rdf ) . to . contain ( 'Quantifiable1 a samm-c:Quantifiable' ) ;
138- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
138+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
139139 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
140140
141- expect ( rdf ) . not . contain ( 'CustomUnit2 a unit :Unit' ) ;
141+ expect ( rdf ) . not . contain ( 'CustomUnit2 a samm :Unit' ) ;
142142 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit1' ) ;
143143 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit2' ) ;
144144 } )
@@ -166,7 +166,7 @@ describe('Test editing Unit', () => {
166166 . then ( ( ) => {
167167 cy . getUpdatedRDF ( ) . then ( rdf => {
168168 expect ( rdf ) . to . contain ( 'Measurement1 a samm-c:Measurement' ) ;
169- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
169+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
170170 expect ( rdf ) . to . contain ( 'samm-c:unit :CustomUnit1' ) ;
171171 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
172172 } ) ;
@@ -194,7 +194,7 @@ describe('Test editing Unit', () => {
194194 . then ( ( ) => {
195195 cy . getUpdatedRDF ( ) . then ( rdf => {
196196 expect ( rdf ) . to . contain ( 'Duration1 a samm-c:Duration' ) ;
197- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
197+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
198198 expect ( rdf ) . to . contain ( 'samm-c:unit :CustomUnit1' ) ;
199199 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
200200 } ) ;
@@ -212,12 +212,12 @@ describe('Test editing Unit', () => {
212212 . then ( ( ) => {
213213 cy . getUpdatedRDF ( ) . then ( rdf => {
214214 expect ( rdf ) . to . contain ( 'Duration1 a samm-c:Duration' ) ;
215- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
215+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
216216 expect ( rdf ) . to . contain ( 'samm-c:unit unit:day' ) ;
217217 expect ( rdf ) . to . contain ( 'samm:dataType xsd:string' ) ;
218218
219219 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit1' ) ;
220- expect ( rdf ) . not . contain ( 'day a unit :Unit' ) ;
220+ expect ( rdf ) . not . contain ( 'day a samm :Unit' ) ;
221221 } ) ;
222222 } ) ;
223223 } ) ;
@@ -231,7 +231,7 @@ describe('Test editing Unit', () => {
231231 assert . isNull ( aspect . properties [ 0 ] . property . characteristic ) ;
232232 } ) ;
233233 cy . getUpdatedRDF ( ) . then ( rdf => {
234- expect ( rdf ) . to . contain ( 'CustomUnit1 a unit :Unit' ) ;
234+ expect ( rdf ) . to . contain ( 'CustomUnit1 a samm :Unit' ) ;
235235
236236 expect ( rdf ) . not . contain ( 'Duration1' ) ;
237237 expect ( rdf ) . not . contain ( 'samm-c:unit :CustomUnit1' ) ;
0 commit comments