fix(traits1): rename test functions to snake case (#854)

Co-authored-by: zhangshaozhi <zhangshaozhi@ZhangshaozhideMacBook-Pro.local>
pull/866/head
xuesong 3 years ago committed by GitHub
parent af91eb508a
commit 1663a16ead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -29,12 +29,12 @@ mod tests {
use super::*; use super::*;
#[test] #[test]
fn is_FooBar() { fn is_foo_bar() {
assert_eq!(String::from("Foo").append_bar(), String::from("FooBar")); assert_eq!(String::from("Foo").append_bar(), String::from("FooBar"));
} }
#[test] #[test]
fn is_BarBar() { fn is_bar_bar() {
assert_eq!( assert_eq!(
String::from("").append_bar().append_bar(), String::from("").append_bar().append_bar(),
String::from("BarBar") String::from("BarBar")

Loading…
Cancel
Save