From ae75acb0b9d667a4119db378d708e0358442daac Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 2 Sep 2024 17:01:32 +0500 Subject: [PATCH] Fix test after 521b0ab58d --- src/bonsai/test/tool/test_spatial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/test/tool/test_spatial.py b/src/bonsai/test/tool/test_spatial.py index 3faae5ff3d..3b0674dd8c 100644 --- a/src/bonsai/test/tool/test_spatial.py +++ b/src/bonsai/test/tool/test_spatial.py @@ -164,7 +164,7 @@ class TestGetDecomposedElements(NewFile): site = ifc.createIfcSite() wall = ifc.createIfcWall() ifcopenshell.api.run("spatial.assign_container", ifc, products=[wall], relating_structure=site) - assert subject.get_decomposed_elements(site) == [wall] + assert subject.get_decomposed_elements(site) == {wall} class TestGetObjectMatrix(NewFile):