diff --git a/src/lib.rs b/src/lib.rs index c598360..d52bc04 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -907,7 +907,7 @@ pub(crate) mod tests { inmem::{immutable::tests::TestImmutableArrays, mutable::Mutable}, record::{ internal::InternalRecordRef, - test::{test_dyn_item_schema, test_dyn_items}, + runtime::test::{test_dyn_item_schema, test_dyn_items}, Column, Datatype, DynRecord, RecordDecodeError, RecordEncodeError, RecordInstance, RecordRef, }, diff --git a/src/record/mod.rs b/src/record/mod.rs index 9df59ec..b69026e 100644 --- a/src/record/mod.rs +++ b/src/record/mod.rs @@ -2,7 +2,7 @@ pub mod internal; mod key; pub mod runtime; #[cfg(test)] -mod str; +pub(crate) mod test; use std::{error::Error, fmt::Debug, io, sync::Arc}; diff --git a/src/record/str.rs b/src/record/test.rs similarity index 100% rename from src/record/str.rs rename to src/record/test.rs