Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Enable clippy::assertions_on_result_states
This lint disallows asserttions on is_ok()/is_err() in favor of either using unwrap (so that at least if the test fails, we the failure message will contain the actual failure reason instead of just "was not ok/err"), or actually matching the specific variant. Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
- Loading branch information