diff --git a/src/bigint.rs b/src/bigint.rs index a13691b..e523790 100644 --- a/src/bigint.rs +++ b/src/bigint.rs @@ -1421,7 +1421,7 @@ impl BigInt { #[cfg(test)] mod biguint_tests { use Integer; - use super::{BigDigit, BigUint, ToBigUint, to_str_radix, to_str_radix_signed}; + use super::{BigDigit, BigUint, ToBigUint, to_str_radix}; use super::{Plus, BigInt, RandBigInt, ToBigInt}; use std::cmp::{Less, Equal, Greater}; diff --git a/src/rational.rs b/src/rational.rs index ac08038..1be7066 100644 --- a/src/rational.rs +++ b/src/rational.rs @@ -386,7 +386,7 @@ impl mod test { use super::{Ratio, Rational, BigRational}; - use std::num::{Zero, One, FromStrRadix, FromPrimitive}; + use std::num::{Zero, One, FromPrimitive}; use std::from_str::FromStr; use std::hash::hash; use std::num;