This commit is contained in:
Jake Probst 2019-08-21 23:07:39 -07:00
parent 5300907e2c
commit 0feee1c0a2

View File

@ -172,9 +172,9 @@ mod tests {
};
let mut bytes = pkt.as_bytes();
assert!(bytes[11] == 2);
assert!(bytes[8] == 2);
bytes[11] = 8;
bytes[8] = 8;
let pkt = super::LoginResponse::from_bytes(&bytes).unwrap();
assert!(pkt.status == super::AccountStatus::InvalidUser);