aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_set_equipment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_set_equipment.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/c_set_equipment.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/azalea-protocol/src/packets/game/c_set_equipment.rs b/azalea-protocol/src/packets/game/c_set_equipment.rs
index 234de5d9..ad691d66 100755
--- a/azalea-protocol/src/packets/game/c_set_equipment.rs
+++ b/azalea-protocol/src/packets/game/c_set_equipment.rs
@@ -80,22 +80,3 @@ impl EquipmentSlot {
}
}
}
-
-#[cfg(test)]
-mod tests {
- use super::*;
-
- #[test]
- fn test_hypixel_set_equipment() {
- let mut cursor = Cursor::new(
- [
- 230, 25, 0, 1, 224, 6, 2, 0, 3, 0, 22, 79, 0, 0, 0, 3, 0, 0, 0, 0, 0,
- ]
- .as_slice(),
- );
-
- let packet = ClientboundSetEquipment::azalea_read(&mut cursor).unwrap();
- println!("packet {packet:?}");
- assert_eq!(cursor.position(), cursor.get_ref().len() as u64);
- }
-}