From 2b6f888087d22808d752048945727dd24fe8bc21 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 9 Oct 2019 14:25:21 -0700 Subject: [PATCH] Remove stray eprintln --- tests/modpow.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/modpow.rs b/tests/modpow.rs index 7668e536..a5f8b928 100644 --- a/tests/modpow.rs +++ b/tests/modpow.rs @@ -134,7 +134,6 @@ mod bigint { let e: BigInt = e.into(); let m: BigInt = m.into(); let r: BigInt = r.into(); - eprintln!("{} {} {} {}", b, e, m, r); let neg_b_r = if e.is_odd() { (-&r).mod_floor(&m)