Skip to content

Commit

Permalink
fix: fix the small error in "field_testing_suite" macro
Browse files Browse the repository at this point in the history
  • Loading branch information
duguorong009 committed Jan 19, 2024
1 parent 2f42753 commit 51b49ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ macro_rules! field_testing_suite {
$(
crate::tests::field::random_serialization_test::<$field>(stringify!($field).to_string());
#[cfg(feature = "derive_serde")]
crate::tests::field::random_serde_test::<$field>(stringify!($field));
crate::tests::field::random_serde_test::<$field>(stringify!($field).to_string());
)*
}
}
Expand Down

0 comments on commit 51b49ae

Please sign in to comment.