libtest: remove unnecessary to_string() calls

This commit is contained in:
Jorge Aparicio 2014-11-27 19:55:37 -05:00
parent 00c7786690
commit 66f52f4c9b

View File

@ -1560,7 +1560,7 @@ mod tests {
assert_eq!(filtered.len(), 1);
assert_eq!(filtered[0].desc.name.to_string(),
"1".to_string());
"1");
assert!(filtered[0].desc.ignore == false);
}