Skip to content

Commit aa8eff5

Browse files
committed
test.backend: Remove outdated tests
1 parent 791e754 commit aa8eff5

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

sdk/test/backend/test_couchdb.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,3 @@ def test_key_errors(self) -> None:
108108
self.object_store.discard(retrieved_submodel)
109109
self.assertEqual("'No AAS object with id https://acplt.org/Test_Submodel exists in "
110110
"CouchDB database'", str(cm.exception))
111-
112-
def test_conflict_errors(self):
113-
# Preperation: add object and retrieve it from the database
114-
example_submodel = create_example_submodel()
115-
self.object_store.add(example_submodel)
116-
retrieved_submodel = self.object_store.get_identifiable('https://acplt.org/Test_Submodel')
117-
118-
# Deleting the submodel with safe_delete should or without safe_delete should work
119-
self.object_store.discard(retrieved_submodel, True)
120-
self.assertEqual(0, len(self.object_store))
121-
122-
def test_editing(self):
123-
test_object = create_example_submodel()
124-
self.object_store.add(test_object)

sdk/test/backend/test_local_file.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,3 @@ def test_key_errors(self) -> None:
107107
self.object_store.discard(retrieved_submodel)
108108
self.assertEqual("'No AAS object with id https://acplt.org/Test_Submodel exists in "
109109
"local file database'", str(cm.exception))
110-
111-
def test_editing(self):
112-
test_object = create_example_submodel()
113-
self.object_store.add(test_object)

0 commit comments

Comments
 (0)