diff --git a/tiledb/test/src/attribute.rs b/tiledb/test/src/attribute.rs index 2dbb32de..dccfc258 100644 --- a/tiledb/test/src/attribute.rs +++ b/tiledb/test/src/attribute.rs @@ -12,11 +12,13 @@ pub fn arbitrary_name() -> impl Strategy { } pub fn arbitrary(context: &Context) -> impl Strategy { - (arbitrary_name(), crate::datatype::arbitrary()).prop_map(|(name, dt)| { - AttributeBuilder::new(context, name.as_ref(), dt) - .expect("Error building attribute") - .build() - }) + (arbitrary_name(), crate::datatype::arbitrary_implemented()).prop_map( + |(name, dt)| { + AttributeBuilder::new(context, name.as_ref(), dt) + .expect("Error building attribute") + .build() + }, + ) } #[cfg(test)]