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(); } }