From 5eaa7fb14473536bb724579f9c0d5953b0081a46 Mon Sep 17 00:00:00 2001 From: Lebedev <sergey.lebedev@corp.mail.ru> Date: Fri, 17 Apr 2020 16:29:23 +0300 Subject: [PATCH] fixed --- exercises/conversions/try_from_into.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/conversions/try_from_into.rs b/exercises/conversions/try_from_into.rs index 255d2e1..834dd93 100644 --- a/exercises/conversions/try_from_into.rs +++ b/exercises/conversions/try_from_into.rs @@ -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()); }