This commit is contained in:
Lebedev 2020-04-17 16:29:23 +03:00
parent a3a554aeed
commit 5eaa7fb144

View file

@ -45,7 +45,7 @@ mod tests {
use super::*;
#[test]
fn test_bad_convert() {
// Test that John is returned when bad string is provided
// Test that error is returned when bad string is provided
let p = Person::try_from("");
assert!(p.is_err());
}