From 90eb9fdafc3639f1d2a77cb654116f2220e3d798 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Tue, 1 Oct 2024 14:50:27 +0200 Subject: [PATCH] fix missing `ValueRangeBatch` entry on check_all_components_ui.py --- 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 af638f024364..9d2f17ad221d 100644 --- a/tests/python/release_checklist/check_all_components_ui.py +++ b/tests/python/release_checklist/check_all_components_ui.py @@ -216,6 +216,7 @@ def alternatives(self) -> list[Any] | None: ), "Translation3DBatch": TestCase(batch=[(1, 2, 3), (4, 5, 6), (7, 8, 9)]), "TriangleIndicesBatch": TestCase(batch=[(0, 1, 2), (3, 4, 5), (6, 7, 8)]), + "ValueRangeBatch": TestCase((0, 5)), "Vector2DBatch": TestCase(batch=[(0, 1), (2, 3), (4, 5)]), "Vector3DBatch": TestCase(batch=[(0, 3, 4), (1, 4, 5), (2, 5, 6)]), "VideoTimestampBatch": TestCase(rr.components.VideoTimestamp(seconds=0.0)),