mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-02-12 04:39:19 +00:00
Fix 23_conversions/from_into.rs tests
This commit is contained in:
parent
87ac600b7c
commit
11144cc2a2
@ -117,14 +117,14 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_trailing_comma() {
|
fn test_trailing_comma() {
|
||||||
let p: Person = Person::from("Mike,32,");
|
let p: Person = Person::from("Mike,32,");
|
||||||
assert_eq!(p.name, "John");
|
assert_eq!(p.name, "Mike");
|
||||||
assert_eq!(p.age, 30);
|
assert_eq!(p.age, 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_trailing_comma_and_some_string() {
|
fn test_trailing_comma_and_some_string() {
|
||||||
let p: Person = Person::from("Mike,32,dog");
|
let p: Person = Person::from("Mike,32,dog");
|
||||||
assert_eq!(p.name, "John");
|
assert_eq!(p.name, "Mike");
|
||||||
assert_eq!(p.age, 30);
|
assert_eq!(p.age, 32);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -123,14 +123,14 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_trailing_comma() {
|
fn test_trailing_comma() {
|
||||||
let p: Person = Person::from("Mike,32,");
|
let p: Person = Person::from("Mike,32,");
|
||||||
assert_eq!(p.name, "John");
|
assert_eq!(p.name, "Mike");
|
||||||
assert_eq!(p.age, 30);
|
assert_eq!(p.age, 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_trailing_comma_and_some_string() {
|
fn test_trailing_comma_and_some_string() {
|
||||||
let p: Person = Person::from("Mike,32,dog");
|
let p: Person = Person::from("Mike,32,dog");
|
||||||
assert_eq!(p.name, "John");
|
assert_eq!(p.name, "Mike");
|
||||||
assert_eq!(p.age, 30);
|
assert_eq!(p.age, 32);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user