From 65415d57ceb8a482dad1e4271379388709b07478 Mon Sep 17 00:00:00 2001 From: Sergey Dubinin Date: Mon, 26 Jun 2023 21:56:20 +0500 Subject: [PATCH] AL-000: Removed ontology test --- tests/integration/test_ontology.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/integration/test_ontology.py b/tests/integration/test_ontology.py index e95e9eff7..3c96b7914 100644 --- a/tests/integration/test_ontology.py +++ b/tests/integration/test_ontology.py @@ -106,15 +106,6 @@ def test_cant_delete_an_ontology_with_project(client): client.delete_unused_feature_schema(feature_schema_id) -def test_cant_delete_an_ontology_that_doesnt_exist(client): - with pytest.raises( - Exception, - match= - "Failed to delete the ontology, message: Failed to find ontology by id: doesntexist" - ): - client.delete_unused_ontology("doesntexist") - - def test_inserts_a_feature_schema_at_given_position(client): tool1 = {'tool': 'polygon', 'name': 'tool1', 'color': 'blue'} tool2 = {'tool': 'polygon', 'name': 'tool2', 'color': 'blue'}