diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2014-05-12 17:56:43 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2014-05-14 14:58:00 -0700 |
| commit | 95e310abdcbfe0f5ad511258097624719cbc84db (patch) | |
| tree | 31ee8e4157dbc7b8fe5b8d4abb34601fa863f7d2 /src/test/run-make | |
| parent | 2a7a39191a83fc2a63df6cb47acd344ae669d9c7 (diff) | |
| download | rust-95e310abdcbfe0f5ad511258097624719cbc84db.tar.gz rust-95e310abdcbfe0f5ad511258097624719cbc84db.zip | |
test: Remove all uses of `~str` from the test suite.
Diffstat (limited to 'src/test/run-make')
| -rw-r--r-- | src/test/run-make/unicode-input/span_length.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/unicode-input/span_length.rs b/src/test/run-make/unicode-input/span_length.rs index 13f141008b7..d5614975215 100644 --- a/src/test/run-make/unicode-input/span_length.rs +++ b/src/test/run-make/unicode-input/span_length.rs @@ -48,7 +48,7 @@ fn main() { let _ = write!(&mut File::create(&main_file).unwrap(), r"\#![feature(non_ascii_idents)] fn main() \{ {} \}", // random string of length n - range(0, n).map(|_| random_char()).collect::<~str>()); + range(0, n).map(|_| random_char()).collect::<StrBuf>()); } // rustc is passed to us with --out-dir and -L etc., so we |
