diff options
| author | bors <bors@rust-lang.org> | 2015-01-29 05:47:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-29 05:47:21 +0000 |
| commit | bedd8108dc9b79402d1ea5349d766275f73398ff (patch) | |
| tree | 33580f180481d78ead16c7a8d3af4513968f4007 /src/libcoretest/str.rs | |
| parent | c5961ad06d45689b44ff305c15d6ec7ec65755a9 (diff) | |
| parent | bce81e24647507c82e02e9918f54e8e3a2431149 (diff) | |
| download | rust-bedd8108dc9b79402d1ea5349d766275f73398ff.tar.gz rust-bedd8108dc9b79402d1ea5349d766275f73398ff.zip | |
Auto merge of #21680 - japaric:slice, r=alexcrichton
Replaces `slice_*` method calls with slicing syntax, and removes `as_slice()` calls that are redundant due to `Deref`.
Diffstat (limited to 'src/libcoretest/str.rs')
| -rw-r--r-- | src/libcoretest/str.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoretest/str.rs b/src/libcoretest/str.rs index 1c0af55370d..3d89b26be04 100644 --- a/src/libcoretest/str.rs +++ b/src/libcoretest/str.rs @@ -19,7 +19,7 @@ fn check_contains_all_substrings(s: &str) { assert!(s.contains("")); for i in range(0, s.len()) { for j in range(i+1, s.len() + 1) { - assert!(s.contains(s.slice(i, j))); + assert!(s.contains(&s[i..j])); } } } |
