fix(ci): missing import in tests

This commit is contained in:
🪞👃🪞 2025-04-19 15:26:14 +03:00
parent aeddf561b1
commit 1f62c2f86d

View file

@ -6,6 +6,7 @@ mod map; pub use self::map::*;
mod thunk; pub use self::thunk::*;
mod transform; pub use self::transform::*;
#[cfg(test)] use crate::*;
#[cfg(test)] #[test] fn test_ops () -> Usually<()> {
Ok(())
}