diff --git a/src/distr/other.rs b/src/distr/other.rs index 661df40afd..e5b7d14820 100644 --- a/src/distr/other.rs +++ b/src/distr/other.rs @@ -301,8 +301,6 @@ where #[cfg(test)] mod tests { - use std::dbg; - use super::*; use crate::RngCore; @@ -353,7 +351,6 @@ mod tests { for _ in 0..100 { let c: char = rng.sample(Alphabetic).into(); incorrect |= !c.is_ascii_alphabetic(); - dbg!(c); } assert!(!incorrect); }