diff --git a/src/ifcopenshell-python/test/api/context/test_edit_context.py b/src/ifcopenshell-python/test/api/context/test_edit_context.py index 210f667f7d..87fd8ddbd7 100644 --- a/src/ifcopenshell-python/test/api/context/test_edit_context.py +++ b/src/ifcopenshell-python/test/api/context/test_edit_context.py @@ -60,5 +60,5 @@ class TestEditContext(test.bootstrap.IFC4): assert subcontext.UserDefinedTargetView == "UserDefinedTargetView" -class TestEditContext(test.bootstrap.IFC2X3, TestEditContext): +class TestEditContextIFC2X3(test.bootstrap.IFC2X3, TestEditContext): pass diff --git a/src/ifcopenshell-python/test/api/cost/test_remove_cost_schedule.py b/src/ifcopenshell-python/test/api/cost/test_remove_cost_schedule.py index 7b2d534653..7e86eabe7b 100644 --- a/src/ifcopenshell-python/test/api/cost/test_remove_cost_schedule.py +++ b/src/ifcopenshell-python/test/api/cost/test_remove_cost_schedule.py @@ -37,5 +37,5 @@ class TestRemoveCostSchedule(test.bootstrap.IFC4): assert not self.file.by_type("IfcRelAssignsToControl") -class TestRemoveCostSchedule(test.bootstrap.IFC2X3, TestRemoveCostSchedule): +class TestRemoveCostScheduleIFC2X3(test.bootstrap.IFC2X3, TestRemoveCostSchedule): pass diff --git a/src/ifcopenshell-python/test/api/test_api.py b/src/ifcopenshell-python/test/api/test_api.py index a0a35794c0..9e2e2f31bd 100644 --- a/src/ifcopenshell-python/test/api/test_api.py +++ b/src/ifcopenshell-python/test/api/test_api.py @@ -284,7 +284,7 @@ class TestTemporarySupportForDeprecatedAPIArguments(test.bootstrap.IFC4): assert rel.is_a("IfcRelReferencedInSpatialStructure") @deprecation_check - def test_removing_a_container(self): + def test_removing_a_structure(self): element = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcBuilding") subelement = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcWall") ifcopenshell.api.run(