Skip to content

Commit 2353e9b

Browse files
committed
fix: characteristic test
1 parent 6a459fa commit 2353e9b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

tests/integration/store_and_load_test.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)