Replace std::iter with core::iter

This commit is contained in:
Henry de Valence 2019-06-04 13:36:07 -07:00
parent eb82a9d8b6
commit 5921d6d2ac

View file

@ -1514,7 +1514,7 @@ mod test {
#[test]
fn test_pippenger_radix() {
use std::iter;
use core::iter;
// For each valid radix it tests that 1000 random-ish scalars can be restored
// from the produced representation precisely.
for w in 6..9 {