From 558d3ab1ae7df0d1633150bdf6ee7e37f3aecc56 Mon Sep 17 00:00:00 2001 From: jitendracandela <78074038+jitendracandela@users.noreply.github.com> Date: Thu, 23 Jun 2022 17:44:52 +0530 Subject: [PATCH] Added extra delay in reboot and factory reset methods (#640) Signed-off-by: jitendracandela --- tests/e2e/basic/test_access_point.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/basic/test_access_point.py b/tests/e2e/basic/test_access_point.py index 740d7d74e..ffeb3ac57 100644 --- a/tests/e2e/basic/test_access_point.py +++ b/tests/e2e/basic/test_access_point.py @@ -33,7 +33,7 @@ class TestAP(object): "when": 0 } resp = setup_controller.ap_reboot(device_name, payload) - time.sleep(120) + time.sleep(150) print(resp.json()) allure.attach(name="Reboot", body=str(resp.json()), attachment_type=allure.attachment_type.JSON) for ap in get_configuration['access_point']: @@ -78,7 +78,7 @@ class TestAP(object): "keepRedirector": True } resp = setup_controller.ap_factory_reset(device_name, payload) - time.sleep(150) + time.sleep(200) print(resp.json()) allure.attach(name="Factory Reset", body=str(resp.json()), attachment_type=allure.attachment_type.JSON) for ap in get_configuration['access_point']: