From ad66360f09874931ee19bf1356f4076c31c39b49 Mon Sep 17 00:00:00 2001 From: YuhanLiin Date: Fri, 3 Dec 2021 21:30:36 -0500 Subject: [PATCH] Fix imports --- tests/array.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/array.rs b/tests/array.rs index 821246be1..c4b590b4a 100644 --- a/tests/array.rs +++ b/tests/array.rs @@ -11,8 +11,7 @@ use approx::assert_relative_eq; use defmac::defmac; use itertools::{zip, Itertools}; use ndarray::prelude::*; -use ndarray::{arr3, rcarr2}; -use ndarray::{Slice, SliceInfo, SliceInfoElem}; +use ndarray::{arr3, indices, rcarr2, Slice, SliceInfo, SliceInfoElem}; use num_complex::Complex; use std::convert::TryFrom;