From caaf8c941199dbd5616dffa2986f519ae96298a8 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 27 Apr 2025 01:37:42 +0100 Subject: [PATCH] Refactor test module imports --- src/frame/ops.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/frame/ops.rs b/src/frame/ops.rs index f52ee9d..c35625e 100644 --- a/src/frame/ops.rs +++ b/src/frame/ops.rs @@ -96,9 +96,10 @@ impl BoolOps for Frame { // } // } +#[cfg(test)] mod tests { - use crate::frame::*; - use crate::matrix::*; + use super::*; + use crate::matrix::Matrix; #[test] fn test_series_ops() {