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:
parent
a734be3a0d
commit
360f1b0867
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user