Replace all clippy::unwrap_used
with Results and ?
in all tests.
#5051
Labels
clippy::unwrap_used
with Results and ?
in all tests.
#5051
Requirements
Is your proposal related to a problem?
In most of our tests, we use
clippy::unwrap_used
annotation, when these aren't necessary.Describe the solution you'd like.
They can be replaced with
-> LemmyResult<()>
(or another result type), and use?
in place ofunwrap
Describe alternatives you've considered.
NA
Additional context
#5048
The text was updated successfully, but these errors were encountered: