diff --git a/tests/generic_config_updater/test_ipv6.py b/tests/generic_config_updater/test_ipv6.py index 59f95db7b9b..4ae4795956a 100644 --- a/tests/generic_config_updater/test_ipv6.py +++ b/tests/generic_config_updater/test_ipv6.py @@ -10,6 +10,9 @@ logger = logging.getLogger(__name__) +pytestmark = [ + pytest.mark.topology('t0', 't1'), +] @pytest.fixture(autouse=True) def ensure_dut_readiness(duthost): @@ -153,6 +156,11 @@ def test_invalid_ipv6_neighbor(duthost, ensure_dut_readiness, op, dummy_neighbor def test_ipv6_neighbor_admin_change(duthost): ipv6_neighbor_address, ipv6_neighbor_config = get_ipv6_neighbor(duthost) json_patch = [ + { + "op": "add", + "path": "/BGP_NEIGHBOR/{}/admin_status".format(ipv6_neighbor_address), + "value": "up" + }, { "op": "replace", "path": "/BGP_NEIGHBOR/{}/admin_status".format(ipv6_neighbor_address),