summaryrefslogtreecommitdiff
path: root/tests/topotests/bgp_dont_capability_negotiate
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2024-04-27 23:18:15 +0300
committerDonatas Abraitis <donatas@opensourcerouting.org>2024-04-27 23:18:15 +0300
commit086df4bfaabdeafdc6643f94f68d17b3e069187a (patch)
tree9e44b4310cef28a75b657c42d85ab17142aef6ca /tests/topotests/bgp_dont_capability_negotiate
parent5f059e0c7d2b6b8bce0a618726ba5d731f2d2ad4 (diff)
tests: Drop duplicate pytestmark per file
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'tests/topotests/bgp_dont_capability_negotiate')
-rw-r--r--tests/topotests/bgp_dont_capability_negotiate/test_bgp_dont_capability_negotiate.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/topotests/bgp_dont_capability_negotiate/test_bgp_dont_capability_negotiate.py b/tests/topotests/bgp_dont_capability_negotiate/test_bgp_dont_capability_negotiate.py
index 9a0f5621dc..2ab13b08e2 100644
--- a/tests/topotests/bgp_dont_capability_negotiate/test_bgp_dont_capability_negotiate.py
+++ b/tests/topotests/bgp_dont_capability_negotiate/test_bgp_dont_capability_negotiate.py
@@ -16,7 +16,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, "../"))
@@ -26,8 +26,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")}