@@ -202,13 +202,13 @@ def test_characteristic_creation(wiki_domain, wiki_username, wiki_password):
202202 name = "TestCharacteristic" ,
203203 label = [model .Label (text = "Test Characteristic" )],
204204 properties = [
205- model .SimpleProperty (
205+ model .PrimitiveProperty (
206206 uuid = "766e7171-a183-4f9c-a9af-28cfd27fb1d9" ,
207207 name = "test_property" ,
208208 type = "string" ,
209209 property_type = "SimpleProperty" ,
210210 ),
211- model .SimpleProperty (
211+ model .PrimitiveProperty (
212212 uuid = "766e7171-a183-4f9c-a9af-28cfd27fb1d1" ,
213213 name = "test_property2" ,
214214 rdf_property = "Property:TestPropertyWithSchema" ,
@@ -273,9 +273,9 @@ def test_characteristic_creation(wiki_domain, wiki_username, wiki_password):
273273 assert t .test_property == "Test"
274274 assert t .test_property2 == 1
275275
276- # cleanup
277- my_characteristic .meta = model .Meta (
278- wiki_page = model .WikiPage (namespace = "Category" )
279- ) # namespace detection fails otherwise
280- osw .delete_entity (my_characteristic )
281- pp .delete ()
276+ # cleanup (disabled for paralle test matrix)
277+ # my_characteristic.meta = model.Meta(
278+ # wiki_page=model.WikiPage(namespace="Category")
279+ # ) # namespace detection fails otherwise
280+ # osw.delete_entity(my_characteristic)
281+ # pp.delete()
0 commit comments