From cf0fddd224778f64201a0449579cc698ee6406c5 Mon Sep 17 00:00:00 2001 From: Enrico Marconi Date: Tue, 26 Mar 2024 17:18:20 +0100 Subject: [PATCH] Fix clippy's warnings for real --- tests/proptest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/proptest.rs b/tests/proptest.rs index b473dc2..b6a8ecf 100644 --- a/tests/proptest.rs +++ b/tests/proptest.rs @@ -15,6 +15,6 @@ proptest! { // TODO: Test fragment #[test] fn parse_did_syntax(input in did_syntax()) { - DID::parse(&input).unwrap(); + DID::parse(input).unwrap(); } }