From ae3165af8a527c33c4c08e9d87e27cdeff46a72d Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 21 Mar 2016 14:26:15 +0100 Subject: [PATCH] tests/integration: only spawn a receive-only lldpd in first namespace We don't need it to send anything. --- tests/integration/fixtures/programs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/fixtures/programs.py b/tests/integration/fixtures/programs.py index 8d324263..d49fdbcb 100644 --- a/tests/integration/fixtures/programs.py +++ b/tests/integration/fixtures/programs.py @@ -269,10 +269,10 @@ def lldpd(request, tmpdir): @pytest.fixture() def lldpd1(lldpd, links, namespaces): - """Shortcut for a first lldpd daemon.""" + """Shortcut for a first receive-only lldpd daemon.""" links(namespaces(1), namespaces(2)) with namespaces(1): - lldpd() + lldpd("-r") @pytest.fixture() -- 2.47.2