Resolve clippy map_unwrap_or pedantic lint in test suite

This commit is contained in:
David Tolnay 2020-05-21 18:37:08 -07:00
parent 54adff8fc5
commit 3e48c540f6
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -39,8 +39,7 @@ pub enum RustupError {
"toolchain '{name}' does not contain component {component}{}",
.suggestion
.as_ref()
.map(|s| format!("; did you mean '{}'?", s))
.unwrap_or_else(String::new),
.map_or_else(String::new, |s| format!("; did you mean '{}'?", s)),
)]
UnknownComponent {
name: String,