From ad739e48304dcfece1fc0c9d9118733d330d17f3 Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Tue, 5 Aug 2025 23:52:20 +0100 Subject: [PATCH] Update integration test as iamge size for simulation camera changed. --- integration-tests/testfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/testfile.py b/integration-tests/testfile.py index a61fdb64..f9e43361 100755 --- a/integration-tests/testfile.py +++ b/integration-tests/testfile.py @@ -74,7 +74,7 @@ def test_client_connection() -> None: cam_client = lt.ThingClient.from_url("http://localhost:5000/camera/") img = Image.open(cam_client.grab_jpeg().open()) print(f"Successfully grabbed image of size {img.size}") - assert img.size == (800, 600) + assert img.size == (820, 616) print("Successfully grabbed image from camera mjpeg stream")