From: Jean-Pierre Tosoni Date: Thu, 16 Jan 2020 09:43:08 +0000 (+0100) Subject: snmp agent: fix tests suite for milliseconds units X-Git-Tag: 1.0.5~20^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f6a8ace68b539d99a843260c6a7bc3f90d57afc;p=thirdparty%2Flldpd.git snmp agent: fix tests suite for milliseconds units --- diff --git a/tests/check_snmp.c b/tests/check_snmp.c index 24b3077a..3836ae5d 100644 --- a/tests/check_snmp.c +++ b/tests/check_snmp.c @@ -32,7 +32,8 @@ extern struct variable8 agent_lldp_vars[]; /* Our test config */ struct lldpd test_cfg = { .g_config = { - .c_tx_interval = 30, + .c_tx_interval = 30000, + .c_tx_hold = 2, .c_ttl = 60, .c_smart = 0 }