From 0d473fa9acbb6e07572ff2e1569b9856cd12f373 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 16 Mar 2023 14:56:17 +0500 Subject: [PATCH] Fixing BoxAlignment value in tests (similar to 9f7db386a) --- src/blenderbim/test/tool/test_drawing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/test/tool/test_drawing.py b/src/blenderbim/test/tool/test_drawing.py index 7abfa86315..ee62459af3 100644 --- a/src/blenderbim/test/tool/test_drawing.py +++ b/src/blenderbim/test/tool/test_drawing.py @@ -426,7 +426,7 @@ class TestGetTextLiteral(NewFile): element = ifc.createIfcAnnotation() element.Representation = ifc.createIfcProductDefinitionShape() context = ifc.createIfcGeometricRepresentationSubContext(ContextType="Plan", ContextIdentifier="Annotation") - item = ifc.createIfcTextLiteralWithExtent(Literal="Literal", Path="RIGHT", BoxAlignment="BoxAlignment") + item = ifc.createIfcTextLiteralWithExtent(Literal="Literal", Path="RIGHT", BoxAlignment="bottom-left") representation = ifc.createIfcShapeRepresentation(ContextOfItems=context, Items=[item]) element.Representation.Representations = [representation] tool.Ifc.link(element, obj)