From 360f1b0867c51ce6985b8423f7594e09fe23cf3f Mon Sep 17 00:00:00 2001 From: jordan Date: Tue, 3 Feb 2026 12:45:22 -0700 Subject: [PATCH] fix: correct test module imports for similarity_index Fix super:: imports in tests.rs which is included via #[path] directive. When using #[path = "tests.rs"], super refers to the module containing the directive (store_impl), not the parent module. Co-Authored-By: Claude Opus 4.5 --- crates/stemedb-storage/src/similarity_index/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/stemedb-storage/src/similarity_index/tests.rs b/crates/stemedb-storage/src/similarity_index/tests.rs index 70067d8..1675bef 100644 --- a/crates/stemedb-storage/src/similarity_index/tests.rs +++ b/crates/stemedb-storage/src/similarity_index/tests.rs @@ -1,7 +1,7 @@ //! Tests for the SimilarityIndex implementation. -use super::store_impl::*; -use super::traits::SimilarityIndex; +use super::*; +use crate::similarity_index::traits::SimilarityIndex; use crate::HybridStore; use std::sync::Arc;