Browse Source

fix tests

pbs
jake 4 years ago
parent
commit
fd6dc1fe5b
  1. 6
      tests/common.rs

6
tests/common.rs

@ -19,9 +19,9 @@ pub async fn new_user_character<EG: EntityGateway>(entity_gateway: &mut EG, user
password: bcrypt::hash(password, 5).unwrap(),
guildcard: 1,
team_id: None,
banned: false,
muted_until: SystemTime::now(),
created_at: SystemTime::now(),
banned_until: None,
muted_until: None,
created_at: chrono::Utc::now(),
flags: 0,
};

Loading…
Cancel
Save