From b47620cd59d16f5f5ea212b33fd7760f70767bee Mon Sep 17 00:00:00 2001 From: Simon Alibert Date: Wed, 4 Jun 2025 16:59:44 +0200 Subject: [PATCH] Remove comment --- tests/cameras/test_opencv.py | 4 +--- tests/cameras/test_realsense.py | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/cameras/test_opencv.py b/tests/cameras/test_opencv.py index 357ce1e14..7ba04b261 100644 --- a/tests/cameras/test_opencv.py +++ b/tests/cameras/test_opencv.py @@ -141,9 +141,7 @@ def test_async_read_timeout(): try: with pytest.raises(TimeoutError): - camera.async_read( - timeout_ms=0 - ) # NOTE(Steven): This is flaky as sdometimes we actually get a frame + camera.async_read(timeout_ms=0) finally: if camera.is_connected: camera.disconnect() diff --git a/tests/cameras/test_realsense.py b/tests/cameras/test_realsense.py index 6e04b6c5a..5fb1767fe 100644 --- a/tests/cameras/test_realsense.py +++ b/tests/cameras/test_realsense.py @@ -162,9 +162,7 @@ def test_async_read_timeout(): try: with pytest.raises(TimeoutError): - camera.async_read( - timeout_ms=0 - ) # NOTE(Steven): This is flaky as sdometimes we actually get a frame + camera.async_read(timeout_ms=0) finally: if camera.is_connected: camera.disconnect()