From b700f0cbd6d6f05a861519515cc5dcf163015ff2 Mon Sep 17 00:00:00 2001 From: Xin Wang Date: Thu, 1 Apr 2021 17:54:24 +0800 Subject: [PATCH] Change topology mark of test_bgp_gr_helper.py from t1 to any (#3248) The test_bgp_gr_helper.py script should can be executed on t0 topology too. This change is to update its topology marker from t0 to any. Signed-off-by: Xin Wang --- tests/bgp/test_bgp_gr_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bgp/test_bgp_gr_helper.py b/tests/bgp/test_bgp_gr_helper.py index 616e98676e8..eb56e6882e6 100644 --- a/tests/bgp/test_bgp_gr_helper.py +++ b/tests/bgp/test_bgp_gr_helper.py @@ -5,7 +5,7 @@ from tests.common.utilities import wait_until pytestmark = [ - pytest.mark.topology('t1'), + pytest.mark.topology('any'), pytest.mark.device_type('vs') ]