librustc_back: remove unnecessary to_string() calls

This commit is contained in:
Jorge Aparicio 2014-11-27 19:23:53 -05:00
parent 8379d72293
commit 71d8d578c6

View file

@ -145,8 +145,8 @@ mod test {
"path2".to_string()
]);
assert_eq!(flags,
vec!("-Wl,-rpath,path1".to_string(),
"-Wl,-rpath,path2".to_string()));
["-Wl,-rpath,path1",
"-Wl,-rpath,path2"]);
}
#[test]