From 99ccda87124d4be575fa77554a8eb6c4522f15c7 Mon Sep 17 00:00:00 2001 From: StudioWEngineers Date: Fri, 20 Dec 2024 16:14:08 +0100 Subject: [PATCH] typo --- tests/python/test_File3dm_ObjectTable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/test_File3dm_ObjectTable.py b/tests/python/test_File3dm_ObjectTable.py index 9a53ceb6..ea6235d3 100644 --- a/tests/python/test_File3dm_ObjectTable.py +++ b/tests/python/test_File3dm_ObjectTable.py @@ -12,7 +12,7 @@ def test_addLine(self) -> None: file_3dm.Layers.AddLayer("layer1", (30, 144, 255, 255)) file_3dm.Layers.AddLayer("layer2", (255, 215, 0, 255)) - # liness added without attributes are added to the current layer, i.e., the first + # lines added without attributes are added to the current layer, i.e., the first # layer added to the model file_3dm.Objects.AddLine(rhino3dm.Point3d(0, 0, 0), rhino3dm.Point3d(1, 0, 0)) with self.subTest(msg="AddLine without attributes"):