From a191ca21d9241d0c1e17d96670ab92289f77f0ae Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Mon, 27 Jun 2022 15:30:59 +0530 Subject: [PATCH] esp_local_ctrl: Increase timeout of first read to minimize test failures --- examples/protocols/esp_local_ctrl/pytest_esp_local_ctrl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/protocols/esp_local_ctrl/pytest_esp_local_ctrl.py b/examples/protocols/esp_local_ctrl/pytest_esp_local_ctrl.py index f94b01297e..33d050a536 100644 --- a/examples/protocols/esp_local_ctrl/pytest_esp_local_ctrl.py +++ b/examples/protocols/esp_local_ctrl/pytest_esp_local_ctrl.py @@ -51,7 +51,7 @@ def test_examples_esp_local_ctrl(dut: Dut) -> None: dut.expect('control: esp_local_ctrl service started with name : my_esp_ctrl_device') def dut_expect_read() -> None: - dut.expect_exact('control: Reading property : timestamp (us)') + dut.expect_exact('control: Reading property : timestamp (us)', timeout=20) dut.expect_exact('control: Reading property : property1') dut.expect_exact('control: Reading property : property2') dut.expect_exact('control: Reading property : property3')