Get rid of BufError

This commit is contained in:
Carl Lerche
2016-08-05 21:54:29 -07:00
parent 6529f6392a
commit b6a424d892
12 changed files with 61 additions and 78 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ fn test_pool_with_one_capacity() {
let mut dst = vec![];
buf.copy_to(&mut dst).unwrap();
buf.copy_to(&mut dst);
assert_eq!(&dst[..], b"Hello World");