about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@palantir.com>2014-09-28 19:28:48 -0700
committerSteven Fackler <sfackler@palantir.com>2014-09-28 19:28:48 -0700
commitfa419d3d21659bb7ee4f4236ae9acf6094300174 (patch)
tree34bdb7bbe96c5103249be09cf8e2889b493c9953 /src/libcollections
parentb7aa03a3caab2f15f32dcdb20b23510707ba47f8 (diff)
downloadrust-fa419d3d21659bb7ee4f4236ae9acf6094300174.tar.gz
rust-fa419d3d21659bb7ee4f4236ae9acf6094300174.zip
Register new snapshots
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/vec.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs
index 479a4c3045a..8bccda37c24 100644
--- a/src/libcollections/vec.rs
+++ b/src/libcollections/vec.rs
@@ -2393,8 +2393,6 @@ mod tests {
         let _ = vec[3];
     }
 
-    // NOTE uncomment after snapshot
-    /*
     #[test]
     #[should_fail]
     fn test_slice_out_of_bounds_1() {
@@ -2429,7 +2427,6 @@ mod tests {
         let x: Vec<int> = vec![1, 2, 3, 4, 5];
         x[3..2];
     }
-    */
 
     #[test]
     fn test_swap_remove_empty() {