Skip to content

Commit d7f6fe3

Browse files
author
Val Brodsky
committed
Followup update for the feature schema test
1 parent e97abe8 commit d7f6fe3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

libs/labelbox/tests/integration/test_feature_schema.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,15 @@ def test_updates_a_feature_schema(client, feature_schema):
107107
assert updated_feature_schema.normalized["name"] == "new name"
108108

109109

110+
<<<<<<< HEAD
110111
def test_does_not_include_used_feature_schema(client):
111112
tool = client.upsert_feature_schema(point.asdict())
112113
feature_schema_id = tool.normalized["featureSchemaId"]
114+
=======
115+
def test_does_not_include_used_feature_schema(client, feature_schema):
116+
tool = feature_schema
117+
feature_schema_id = tool.normalized['featureSchemaId']
118+
>>>>>>> b54a37e7 (Followup update for the feature schema test)
113119
ontology = client.create_ontology_from_feature_schemas(
114120
name="ontology name",
115121
feature_schema_ids=[feature_schema_id],
@@ -120,4 +126,3 @@ def test_does_not_include_used_feature_schema(client):
120126
assert feature_schema_id not in unused_feature_schemas
121127

122128
client.delete_unused_ontology(ontology.uid)
123-
client.delete_unused_feature_schema(feature_schema_id)

0 commit comments

Comments
 (0)