From b04f308a5b91a402b0748daf5649dcbe07183859 Mon Sep 17 00:00:00 2001 From: GitHub Action Bot Date: Sat, 20 Jul 2024 19:20:57 +0000 Subject: [PATCH] Commit from GitHub Actions (Format Code) --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d292d02..7d75ff9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1334,7 +1334,9 @@ mod tests { } fn get_client() -> Consul { - rustls::crypto::ring::default_provider().install_default().expect("Failed to install rustls crypto provider"); + rustls::crypto::ring::default_provider() + .install_default() + .expect("Failed to install rustls crypto provider"); let conf: Config = Config::from_env(); Consul::new(conf).unwrap() }