Browse Source

fix test

pull/3/head
Jake Probst 5 years ago
parent
commit
0feee1c0a2
  1. 4
      src/packet/login.rs

4
src/packet/login.rs

@ -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);

Loading…
Cancel
Save