Browse Source

fix tests again

pbs
jake 4 years ago
parent
commit
0f7cbbf096
  1. 12
      src/login/character.rs
  2. 18
      src/login/login.rs

12
src/login/character.rs

@ -677,10 +677,10 @@ mod test {
username: "testuser".to_owned(),
password: bcrypt::hash("mypassword", 5).unwrap(),
guildcard: 0,
banned_until: None,
muted_until: None,
created_at: chrono::Utc::now(),
team_id: None,
banned: false,
muted_until: SystemTime::now(),
created_at: SystemTime::now(),
flags: 0,
});
server.clients.insert(ClientId(5), clientstate);
@ -721,9 +721,9 @@ mod test {
password: bcrypt::hash("qwer", 5).unwrap(),
guildcard: 3,
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,
});

18
src/login/login.rs

@ -186,9 +186,9 @@ mod test {
password: bcrypt::hash("mypassword", 5).unwrap(),
guildcard: 0,
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,
})
}
@ -270,9 +270,9 @@ mod test {
password: bcrypt::hash("notpassword", 5).unwrap(),
guildcard: 0,
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,
})
}
@ -315,9 +315,9 @@ mod test {
password: bcrypt::hash("mypassword", 5).unwrap(),
guildcard: 0,
team_id: None,
banned: true,
muted_until: SystemTime::now(),
created_at: SystemTime::now(),
banned_until: Some(chrono::Utc::now() + chrono::Duration::days(1)),
muted_until: None,
created_at: chrono::Utc::now(),
flags: 0,
})
}

Loading…
Cancel
Save