From 55d55a2c864d27249105c6f8a56299ed2c877d25 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 4 Feb 2026 17:29:19 -0600 Subject: [PATCH] fix tests --- src/snmp/poller_registry.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/snmp/poller_registry.rs b/src/snmp/poller_registry.rs index 98bbc6b..f714e4e 100644 --- a/src/snmp/poller_registry.rs +++ b/src/snmp/poller_registry.rs @@ -112,6 +112,7 @@ mod tests { version: "2c".to_string(), community: SecretString::new("public"), v3_config: None, + transport: "udp".to_string(), }; // Create a poller @@ -132,6 +133,7 @@ mod tests { version: "2c".to_string(), community: SecretString::new("public"), v3_config: None, + transport: "udp".to_string(), }; let poller = DevicePoller::spawn("test-device".to_string(), config.clone());