From 811a908cc37c239bca163dfcc6729ed610be3d93 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Sat, 11 May 2024 19:01:57 +1000 Subject: [PATCH] More segfault fixes in test suite (maybe order matters only on Linux?) --- src/ifcopenshell-python/test/api/root/test_remove_product.py | 2 +- .../test/api/system/test_unassign_flow_control.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcopenshell-python/test/api/root/test_remove_product.py b/src/ifcopenshell-python/test/api/root/test_remove_product.py index 91a2cf6e31..28d5a21f3c 100644 --- a/src/ifcopenshell-python/test/api/root/test_remove_product.py +++ b/src/ifcopenshell-python/test/api/root/test_remove_product.py @@ -458,5 +458,5 @@ class TestRemoveProduct(test.bootstrap.IFC4): assert not self.file.by_type("IfcRelFlowControlElements") -class TestRemoveProductIFC2X3(test.bootstrap.IFC2X3, TestRemoveProduct): +class TestRemoveProductIFC2X3(TestRemoveProduct, test.bootstrap.IFC2X3): pass diff --git a/src/ifcopenshell-python/test/api/system/test_unassign_flow_control.py b/src/ifcopenshell-python/test/api/system/test_unassign_flow_control.py index 873c497505..1ece358dfd 100644 --- a/src/ifcopenshell-python/test/api/system/test_unassign_flow_control.py +++ b/src/ifcopenshell-python/test/api/system/test_unassign_flow_control.py @@ -64,5 +64,5 @@ class TestUnassignFlowControl(test.bootstrap.IFC4): assert relation.RelatedControlElements == (flow_control,) -class TestUnassignFlowControlIFC2X3(test.bootstrap.IFC2X3, TestUnassignFlowControl): +class TestUnassignFlowControlIFC2X3(TestUnassignFlowControl, test.bootstrap.IFC2X3): pass