summaryrefslogtreecommitdiff
path: root/tests/topotests/bgp_oad/test_bgp_oad.py
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2024-04-29 09:14:52 -0400
committerGitHub <noreply@github.com>2024-04-29 09:14:52 -0400
commitf3720c477ea86b91ed30d03ebb48405fb0258c9a (patch)
tree0e7f08816a59575e9618137cdf7a58f7844d71cd /tests/topotests/bgp_oad/test_bgp_oad.py
parent2187b8271460f279feea3d92f6aad6bfd3b5ff74 (diff)
parent422e0dd25665617ca2530eaeee82071bc47c4ee8 (diff)
Merge pull request #15865 from opensourcerouting/fix/drop_duplicate_pytestmark
tests: A bit of housekeeping for topotests
Diffstat (limited to 'tests/topotests/bgp_oad/test_bgp_oad.py')
-rw-r--r--tests/topotests/bgp_oad/test_bgp_oad.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/topotests/bgp_oad/test_bgp_oad.py b/tests/topotests/bgp_oad/test_bgp_oad.py
index b26c548357..a2ca37a2b7 100644
--- a/tests/topotests/bgp_oad/test_bgp_oad.py
+++ b/tests/topotests/bgp_oad/test_bgp_oad.py
@@ -17,7 +17,7 @@ import json
import pytest
import functools
-pytestmark = pytest.mark.bgpd
+pytestmark = [pytest.mark.bgpd]
CWD = os.path.dirname(os.path.realpath(__file__))
sys.path.append(os.path.join(CWD, "../"))
@@ -27,8 +27,6 @@ from lib import topotest
from lib.topogen import Topogen, TopoRouter, get_topogen
from lib.common_config import step
-pytestmark = [pytest.mark.bgpd]
-
def setup_module(mod):
topodef = {"s1": ("r1", "r2", "r4"), "s2": ("r2", "r3"), "s3": ("r4", "r5")}