commented empty slice/vec comparison

This commit is contained in:
Nikolay Volf
2016-03-14 10:47:22 +01:00
parent 8532f2dc2e
commit 829ed4d0a6
2 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ impl<T> BytesConvertable for T where T: AsRef<[u8]> {
#[test]
fn bytes_convertable() {
assert_eq!(vec![0x12u8, 0x34].bytes(), &[0x12u8, 0x34]);
assert_eq!([0u8; 0].bytes(), &[]);
// assert_eq!([0u8; 0].as_slice(), &[]);
}
/// Simple trait to allow for raw population of a Sized object from a byte slice.