From ca70e5e321a3c174c53d0650feed84db471ac30d Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 11 Dec 2025 23:21:42 -1030 Subject: enable str_to_string clippy lint --- azalea-client/src/test_utils/simulation.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'azalea-client/src/test_utils') diff --git a/azalea-client/src/test_utils/simulation.rs b/azalea-client/src/test_utils/simulation.rs index 1946fd6d..5a1c9c52 100644 --- a/azalea-client/src/test_utils/simulation.rs +++ b/azalea-client/src/test_utils/simulation.rs @@ -71,10 +71,7 @@ impl Simulation { // start in the config state app.world_mut().entity_mut(entity).insert(( InConfigState, - GameProfileComponent(GameProfile::new( - Uuid::from_u128(1234), - "azalea".to_string(), - )), + GameProfileComponent(GameProfile::new(Uuid::from_u128(1234), "azalea".to_owned())), )); tick_app(&mut app); -- cgit v1.2.3