From fd36f6fcac7a770d8dffba94d10b2f70c4f1ca4d Mon Sep 17 00:00:00 2001 From: Xu Si Yu Date: Thu, 23 Nov 2023 16:48:06 +0800 Subject: [PATCH] fix(ci): fix wrong path of ot sleep case --- examples/openthread/pytest_otbr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/openthread/pytest_otbr.py b/examples/openthread/pytest_otbr.py index 487e68ee9b..c307adc1c7 100644 --- a/examples/openthread/pytest_otbr.py +++ b/examples/openthread/pytest_otbr.py @@ -562,11 +562,11 @@ def test_TCP_NAT64(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> N 'config, count, app_path, target', [ ('cli_h2|sleepy_c6', 2, f'{os.path.join(os.path.dirname(__file__), "ot_cli")}' - f'|{os.path.join(os.path.dirname(__file__), "ot_sleepy_device")}', + f'|{os.path.join(os.path.dirname(__file__), "ot_sleepy_device/light_sleep")}', 'esp32h2|esp32c6'), ('cli_c6|sleepy_h2', 2, f'{os.path.join(os.path.dirname(__file__), "ot_cli")}' - f'|{os.path.join(os.path.dirname(__file__), "ot_sleepy_device")}', + f'|{os.path.join(os.path.dirname(__file__), "ot_sleepy_device/light_sleep")}', 'esp32c6|esp32h2'), ], indirect=True,