From a34682c3fbb1a0d5e773cf7ee53bbb1dd8af975e Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Tue, 3 Dec 2024 17:51:15 +0100 Subject: [PATCH] add plane to all components check --- tests/python/release_checklist/check_all_components_ui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/release_checklist/check_all_components_ui.py b/tests/python/release_checklist/check_all_components_ui.py index cd9cab6cfecca..e9f484296bcd1 100644 --- a/tests/python/release_checklist/check_all_components_ui.py +++ b/tests/python/release_checklist/check_all_components_ui.py @@ -184,6 +184,7 @@ def alternatives(self) -> list[Any] | None: "NameBatch": TestCase(batch=["Hello World", "Foo Bar", "Baz Qux"]), "OpacityBatch": TestCase(0.5), "PinholeProjectionBatch": TestCase([(0, 1, 2), (3, 4, 5), (6, 7, 8)]), + "Plane3DBatch": TestCase(rr.datatypes.Plane3D(xyzd=(1, 2, 3, 4))), "PoseRotationAxisAngleBatch": TestCase( rr.datatypes.RotationAxisAngle(axis=(1, 0, 0), angle=rr.datatypes.Angle(rad=math.pi)) ),