From 3d87630c721b0374fc587f23993c65324c7fb5fd Mon Sep 17 00:00:00 2001 From: Joe Abbate Date: Sat, 28 Dec 2024 18:56:20 -0500 Subject: [PATCH] Cargo fmt --- implants/lib/eldritch/src/random/int_impl.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/implants/lib/eldritch/src/random/int_impl.rs b/implants/lib/eldritch/src/random/int_impl.rs index 7f8b2987..507b9d87 100644 --- a/implants/lib/eldritch/src/random/int_impl.rs +++ b/implants/lib/eldritch/src/random/int_impl.rs @@ -1,4 +1,5 @@ use anyhow::Result; +use anyhow::Result; use rand::Rng; use rand_chacha::rand_core::SeedableRng; @@ -35,7 +36,7 @@ mod tests { let lower_bound = 0.90 * NUM_ITERATION as f64 / MAX_VALUE as f64; let upper_bound = 1.10 * NUM_ITERATION as f64 / MAX_VALUE as f64; - + for count in counts { assert!( count as f64 >= lower_bound && count as f64 <= upper_bound,