From b549e65ad9ac6592bc052ded440abc69434342ff Mon Sep 17 00:00:00 2001 From: Bruno Postle Date: Sat, 4 Jul 2026 17:38:13 +0100 Subject: [PATCH] bonsai: restore descriptive name for test_copy_with_new_geometry_copied_from_the_old The underlying bug (has_material_styles bypassing the tool layer) was already fixed by e76455913, which added the required mock expectation here, but left the test under its quarantine placeholder name test_AAAAAAAAAAAA. Restore the real name now that it genuinely passes. --- src/bonsai/test/core/test_root.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bonsai/test/core/test_root.py b/src/bonsai/test/core/test_root.py index 96bd389d1d..4fcafe6947 100644 --- a/src/bonsai/test/core/test_root.py +++ b/src/bonsai/test/core/test_root.py @@ -40,8 +40,7 @@ class TestCopyClass: collector.assign("obj").should_be_called() subject.copy_class(ifc, collector, geometry, root, obj="obj") - # def test_copy_with_new_geometry_copied_from_the_old(self, ifc, collector, geometry, root): - def test_AAAAAAAAAAAA(self, ifc, collector, geometry, root): + def test_copy_with_new_geometry_copied_from_the_old(self, ifc, collector, geometry, root): ifc.get_entity("obj").should_be_called().will_return("original_element") root.is_element_a("original_element", "IfcRelSpaceBoundary").should_be_called().will_return(False) root.get_object_representation("obj").should_be_called().will_return("representation")