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 | 4 |
1 files changed, 2 insertions, 2 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 a7042417..2691d04b 100644 --- a/azalea-protocol/src/packets/game/c_set_entity_data.rs +++ b/azalea-protocol/src/packets/game/c_set_entity_data.rs @@ -23,7 +23,7 @@ mod tests { 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); + println!("{packet:?}"); assert_eq!(buf.position(), contents.len() as u64); @@ -44,7 +44,7 @@ mod tests { ]; let mut buf = Cursor::new(contents.as_slice()); let packet = ClientboundSetEntityData::azalea_read(&mut buf).unwrap(); - println!("{:?}", packet); + println!("{packet:?}"); assert_eq!(buf.position(), contents.len() as u64); } |
