From 2133b57f788d3807613bd053f3c4a05030ee6901 Mon Sep 17 00:00:00 2001 From: James Mayclin Date: Fri, 21 Feb 2025 23:47:48 +0000 Subject: [PATCH] cargo +nightly fmt --- bindings/rust/extended/s2n-tls/src/cert_chain.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bindings/rust/extended/s2n-tls/src/cert_chain.rs b/bindings/rust/extended/s2n-tls/src/cert_chain.rs index d40895f1cd4..ec596974a84 100644 --- a/bindings/rust/extended/s2n-tls/src/cert_chain.rs +++ b/bindings/rust/extended/s2n-tls/src/cert_chain.rs @@ -357,13 +357,14 @@ unsafe impl Send for Certificate<'_> {} #[cfg(test)] mod tests { - use crate::error::Error as S2NError; - use crate::testing::config_builder; use crate::{ config, - error::{ErrorSource, ErrorType}, + error::{Error as S2NError, ErrorSource, ErrorType}, security::DEFAULT_TLS13, - testing::{CertKeyPair, InsecureAcceptAllCertificatesHandler, SniTestCerts, TestPair}, + testing::{ + config_builder, CertKeyPair, InsecureAcceptAllCertificatesHandler, SniTestCerts, + TestPair, + }, }; use super::*;