Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maackle committed Nov 4, 2024
1 parent bbb44dd commit 877f32e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions proptest-derive/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ test! {
#[derive(Debug)]
struct MyUnitStruct;
} expands to {
#[allow(non_local_definitions)]
#[allow(non_upper_case_globals)]
#[allow(clippy::arc_with_non_send_sync)]
const _: () = {
Expand All @@ -99,6 +100,7 @@ test! {
#[derive(Debug)]
struct MyTupleUnitStruct();
} expands to {
#[allow(non_local_definitions)]
#[allow(non_upper_case_globals)]
#[allow(clippy::arc_with_non_send_sync)]
const _: () = {
Expand All @@ -120,6 +122,7 @@ test! {
#[derive(Debug)]
struct MyNamedUnitStruct {}
} expands to {
#[allow(non_local_definitions)]
#[allow(non_upper_case_globals)]
#[allow(clippy::arc_with_non_send_sync)]
const _: () = {
Expand Down

0 comments on commit 877f32e

Please sign in to comment.