fix(advanced_errors): Fix unit test unreachable_patterns warning

This commit is contained in:
zhangshaozhi 2021-10-18 14:55:53 +08:00
parent af91eb508a
commit 76acb9f534

View File

@ -64,7 +64,6 @@ impl Display for ParseClimateError {
match self {
NoCity => write!(f, "no city name"),
ParseFloat(e) => write!(f, "error parsing temperature: {}", e),
_ => write!(f, "unhandled error!"),
}
}
}