From b8aefe7df0174c17594f8dd429a503767274666a Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 13 Sep 2024 16:53:07 +0500 Subject: [PATCH] geometry.unassign_representation - fix missing ifc2x3 tests --- .../test/api/geometry/test_unassign_representation.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ifcopenshell-python/test/api/geometry/test_unassign_representation.py b/src/ifcopenshell-python/test/api/geometry/test_unassign_representation.py index 316c6cbe90..1e45054369 100644 --- a/src/ifcopenshell-python/test/api/geometry/test_unassign_representation.py +++ b/src/ifcopenshell-python/test/api/geometry/test_unassign_representation.py @@ -77,3 +77,7 @@ class TestUnassignRepresentation(test.bootstrap.IFC4): assert len(self.file.by_type("IfcShapeRepresentation")) == 1 assert not wall.Representation assert len(self.file.by_type("IfcProductDefinitionShape")) == 0 + + +class TestUnassignRepresentationIFC2X3(test.bootstrap.IFC2X3, TestUnassignRepresentation): + pass