From: Vincent Bernat Date: Mon, 21 Mar 2016 13:26:15 +0000 (+0100) Subject: tests/integration: only spawn a receive-only lldpd in first namespace X-Git-Tag: 0.9.3~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae3165af8a527c33c4c08e9d87e27cdeff46a72d;p=thirdparty%2Flldpd.git tests/integration: only spawn a receive-only lldpd in first namespace We don't need it to send anything. --- 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()