Update for new blanket impl rules.

This commit is contained in:
Victor Berger
2015-04-03 22:46:10 +02:00
parent fb67281e72
commit 635274752b
2 changed files with 38 additions and 29 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ pub fn test_rope_round_trip() {
let mut dst = vec![];
rope.buf().read(&mut dst).unwrap();
assert_eq!(b"zomg", dst);
assert_eq!(b"zomg", &dst[..]);
}
#[test]