We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b6009 commit bbc9e4fCopy full SHA for bbc9e4f
tests/integration/test_ontology.py
@@ -5,11 +5,14 @@
5
import json
6
import time
7
8
+
9
def test_unarchive_feature_schema_node(client, ontology):
10
feature_schema_to_unarchive = ontology.normalized['tools'][0]
- result = client.unarchive_feature_schema_node(ontology.uid, feature_schema_to_unarchive['featureSchemaId'])
11
+ result = client.unarchive_feature_schema_node(
12
+ ontology.uid, feature_schema_to_unarchive['featureSchemaId'])
13
assert result == True
14
15
16
def test_delete_tool_feature_from_ontology(client, ontology):
17
feature_schema_to_delete = ontology.normalized['tools'][0]
18
assert len(ontology.normalized['tools']) == 2
0 commit comments