diff options
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_entity_data.rs')
| -rw-r--r-- | azalea-protocol/src/packets/game/c_set_entity_data.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_entity_data.rs b/azalea-protocol/src/packets/game/c_set_entity_data.rs index 666f6643..f51a42a4 100644 --- a/azalea-protocol/src/packets/game/c_set_entity_data.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_data.rs @@ -19,20 +19,6 @@ mod tests { use super::*; #[test] - fn test_read_write_hypixel_entity_data() { - let contents = [161, 226, 1, 10, 18, 1, 20, 38, 124, 175, 198, 255]; - let mut buf = Cursor::new(contents.as_slice()); - let packet = ClientboundSetEntityData::azalea_read(&mut buf).unwrap(); - println!("{packet:?}"); - - assert_eq!(buf.position(), contents.len() as u64); - - let mut buf = Vec::new(); - packet.write(&mut buf).unwrap(); - assert_eq!(buf, contents); - } - - #[test] fn test_read_hypixel_entity_data_2() { let contents = [ 161, 21, 2, 6, 0, 5, 8, 0, 6, 21, 0, 7, 1, 0, 1, 1, 172, 2, 3, 8, 0, 4, 8, 0, 9, 1, 0, |
