Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meshtls-rustls: fix clippy
.ok().expect()
lints in tests (#2017)
This fixes a new Clippy lint for uses of `.ok().expect("...")` on `Result`s that could just be replaced with `.expect("...")`. This pattern shows up in a couple of the meshtls-rustls tests, and the Clippy lint was causing CI to fail.
- Loading branch information