From 211f38003eec4fa9d03753c336835cbdfc1c546d Mon Sep 17 00:00:00 2001 From: space Date: Sun, 3 May 2026 21:04:39 +0200 Subject: [PATCH] Align interact verify test interval with schema minimum --- tests/test_ocr_and_interact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ocr_and_interact.py b/tests/test_ocr_and_interact.py index ef5f813..7116008 100644 --- a/tests/test_ocr_and_interact.py +++ b/tests/test_ocr_and_interact.py @@ -127,7 +127,7 @@ def test_interact_verify_success_and_timeout(monkeypatch): payload = { "action": {"screen": 0, "action": {"action": "type", "text": "hello"}}, "verify": {"type": "ocr_text_near_point", "text": "hello", "x": 100, "y": 100}, - "check_interval_ms": 10, + "check_interval_ms": 50, "timeout_ms": 500, } ok_resp = client.post("/interact/verify", json=payload, headers=_auth_headers())