]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/process-spawn-with-unicode-params.rs
std: Remove format_strbuf!()
[rust.git] / src / test / run-pass / process-spawn-with-unicode-params.rs
index 0bfa2a75cf51f19e21c5b4f5d1aabde327799485..70839c1884791f5b987fa2f56127694fd954414a 100644 (file)
@@ -36,8 +36,7 @@ fn main() {
     let blah       = "\u03c0\u042f\u97f3\u00e6\u221e";
 
     let child_name = "child";
-    let child_dir  = format_strbuf!("process-spawn-with-unicode-params-{}",
-                                    blah);
+    let child_dir  = format!("process-spawn-with-unicode-params-{}", blah);
 
     // parameters sent to child / expected to be received from parent
     let arg = blah;