From 7b915b7dcf043f25ece5df57581acb82a9c2e645 Mon Sep 17 00:00:00 2001 From: rvcas Date: Wed, 13 Sep 2023 19:07:45 -0400 Subject: [PATCH] chore: allow clippy::arc_with_non_send_sync in tests --- crates/aiken-project/src/blueprint/schema.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/aiken-project/src/blueprint/schema.rs b/crates/aiken-project/src/blueprint/schema.rs index 125decbb7..aa7f8a457 100644 --- a/crates/aiken-project/src/blueprint/schema.rs +++ b/crates/aiken-project/src/blueprint/schema.rs @@ -1336,6 +1336,7 @@ pub mod tests { ) } + #[allow(clippy::arc_with_non_send_sync)] fn arbitrary_data() -> impl Strategy { let leaf = prop_oneof![Just(Data::Opaque), Just(Data::Bytes), Just(Data::Integer)]; @@ -1362,6 +1363,7 @@ pub mod tests { }) } + #[allow(clippy::arc_with_non_send_sync)] fn arbitrary_schema() -> impl Strategy { prop_compose! { fn data_strategy()(data in arbitrary_data()) -> Schema {