diff options
Diffstat (limited to 'azalea-auth/src/game_profile.rs')
| -rw-r--r-- | azalea-auth/src/game_profile.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/azalea-auth/src/game_profile.rs b/azalea-auth/src/game_profile.rs index 4f5bccfd..9038ea61 100644 --- a/azalea-auth/src/game_profile.rs +++ b/azalea-auth/src/game_profile.rs @@ -202,14 +202,14 @@ mod tests { profile, GameProfile { uuid: Uuid::parse_str("f1a2b3c4-d5e6-f7a8-b9c0-d1e2f3a4b5c6").unwrap(), - name: "Notch".to_string(), + name: "Notch".to_owned(), properties: { let mut map = IndexMap::new(); map.insert( - "qwer".to_string(), + "qwer".to_owned(), ProfilePropertyValue { - value: "asdf".to_string(), - signature: Some("zxcv".to_string()), + value: "asdf".to_owned(), + signature: Some("zxcv".to_owned()), }, ); GameProfileProperties { map }.into() |
