From 6363985a56cd1348176288b04a4087c196d2fa84 Mon Sep 17 00:00:00 2001 From: Rodny Molina Date: Fri, 8 Feb 2019 22:49:51 -0800 Subject: [PATCH] [vstest]: Potential fix for timing issue in warm_reboot's routing UT (#788) --- tests/test_warm_reboot.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_warm_reboot.py b/tests/test_warm_reboot.py index 4b6b849c3c42..7815b4029610 100644 --- a/tests/test_warm_reboot.py +++ b/tests/test_warm_reboot.py @@ -967,8 +967,7 @@ def enable_warmrestart(dvs, db, app_name): # ################################################################################ -# TODO: Please fix this test case. Here temporarily skip to unblock other pull requests -@pytest.mark.skip(reason="Suspected unstable test code") + def test_routing_WarmRestart(dvs, testlog): appl_db = swsscommon.DBConnector(swsscommon.APPL_DB, dvs.redis_sock, 0) @@ -976,7 +975,7 @@ def test_routing_WarmRestart(dvs, testlog): state_db = swsscommon.DBConnector(swsscommon.STATE_DB, dvs.redis_sock, 0) # Restart-timer to utilize during the following testcases - restart_timer = 10 + restart_timer = 15 #############################################################################