More segfault fixes in test suite (maybe order matters only on Linux?)

This commit is contained in:
Dion Moult
2024-05-11 19:01:57 +10:00
parent 94e5baf48a
commit 811a908cc3
2 changed files with 2 additions and 2 deletions
@@ -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
@@ -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