You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR resolves a clippy::needless_lifetimes warning found in the
create_test_config test helper function.
The explicit 'a lifetime annotation was unnecessary, as Rust's lifetime
elision rules can correctly infer the lifetime of the input &str and the
returned NegotiationConfig.
The function signature has been updated to remove the explicit lifetime,
making the code more idiomatic.
Signed-off-by: Sergio Arroutbi <[email protected]>
0 commit comments