Change to_owned() to to_string().

This commit is contained in:
Ahmed Charles 2014-05-29 11:59:53 -07:00
parent 50b8528970
commit 2dfad3bf52
3 changed files with 7 additions and 7 deletions

View file

@ -2013,8 +2013,8 @@ mod test_map {
let map_str = format!("{}", map);
assert!(map_str == "{1: 2, 3: 4}".to_owned() || map_str == "{3: 4, 1: 2}".to_owned());
assert_eq!(format!("{}", empty), "{}".to_owned());
assert!(map_str == "{1: 2, 3: 4}".to_string() || map_str == "{3: 4, 1: 2}".to_string());
assert_eq!(format!("{}", empty), "{}".to_string());
}
#[test]

View file

@ -1366,8 +1366,8 @@ mod test_treemap {
let map_str = format!("{}", map);
assert!(map_str == "{1: 2, 3: 4}".to_owned());
assert_eq!(format!("{}", empty), "{}".to_owned());
assert!(map_str == "{1: 2, 3: 4}".to_string());
assert_eq!(format!("{}", empty), "{}".to_string());
}
#[test]
@ -1776,7 +1776,7 @@ mod test_set {
let set_str = format!("{}", set);
assert!(set_str == "{1, 2}".to_owned());
assert_eq!(format!("{}", empty), "{}".to_owned());
assert!(set_str == "{1, 2}".to_string());
assert_eq!(format!("{}", empty), "{}".to_string());
}
}