Skip to content

Commit

Permalink
chore: rename record::str to record::test
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Nov 22, 2024
1 parent 38289f1 commit a4234b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down
2 changes: 1 addition & 1 deletion src/record/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};

Expand Down
File renamed without changes.

0 comments on commit a4234b8

Please sign in to comment.