From 30c9956face344e8c66e5d0d778bce5fffa0fc0b Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 15 Jul 2026 12:26:00 +0500 Subject: [PATCH] bsdd: fix test_get_class_relations `classRelations` doesn't exist on `ClassPropertiesContractV1`, probably was just a typo. (cherry picked from commit a7a7edfd279c3dec7a994efd1ba35e2a8882941e) --- src/bsdd/tests/test_bsdd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bsdd/tests/test_bsdd.py b/src/bsdd/tests/test_bsdd.py index 221c76f537..21fd19cfcf 100644 --- a/src/bsdd/tests/test_bsdd.py +++ b/src/bsdd/tests/test_bsdd.py @@ -40,7 +40,7 @@ def test_get_class(): def test_get_class_relations(): uri_light_fixture = next(l for l in get_ifc_classes()["classes"] if "IfcLightFixture" == l["code"])["uri"] - ifc4x3_light_fixture_relations = client.get_class_properties(uri_light_fixture, True) + ifc4x3_light_fixture_relations = client.get_class_relations(uri_light_fixture, True) assert "Electrical unit for light-line system" and "Tubelight system" in [ r["className"] for r in ifc4x3_light_fixture_relations["classRelations"] ]