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 <noreply@anthropic.com>
This commit is contained in:
jordan 2026-02-03 12:45:22 -07:00
parent a734be3a0d
commit 360f1b0867

View File

@ -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;