fix tests

This commit is contained in:
jake 2020-10-22 09:43:45 -06:00
parent ca38d60ff0
commit 40a1fdb236

View File

@ -15,6 +15,7 @@ use libpso::{utf8_to_array, utf8_to_utf16_array};
pub async fn new_user_character<EG: EntityGateway>(entity_gateway: &mut EG, username: &str, password: &str) -> (UserAccountEntity, CharacterEntity) {
let new_user = NewUserAccountEntity {
email: format!("{}@pso.com", username),
username: username.into(),
password: bcrypt::hash(password, 5).unwrap(),
guildcard: 1,