Move import that was only used in tests into test module

This commit is contained in:
Matthew Gordon 2020-01-10 16:20:19 -05:00
parent 5e0e2bad06
commit ffcfa0009c
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
use nalgebra::{convert, Point3, RealField, Vector3}; use nalgebra::{convert, Point3, RealField};
use super::{IntersectP, Ray}; use super::{IntersectP, Ray};
@ -215,6 +215,9 @@ mod tests {
mod bounding_box { mod bounding_box {
use super::*; use super::*;
use nalgebra::Vector3;
use quickcheck::TestResult; use quickcheck::TestResult;
use quickcheck_macros::quickcheck; use quickcheck_macros::quickcheck;