Fixing BoxAlignment value in tests (similar to 9f7db386a)

This commit is contained in:
Andrej730
2023-03-16 14:56:17 +05:00
parent d8eb765906
commit 0d473fa9ac
+1 -1
View File
@@ -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)