Skip to content

Commit

Permalink
Remove unnecessary dbg! usage
Browse files Browse the repository at this point in the history
  • Loading branch information
1Git2Clone committed Feb 14, 2025
1 parent bb51ab5 commit fc672b9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/distr/other.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,6 @@ where

#[cfg(test)]
mod tests {
use std::dbg;

use super::*;
use crate::RngCore;

Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit fc672b9

Please sign in to comment.