cargo fmt
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2022-09-13 10:29:09 +02:00
parent 795abc57fa
commit 427b368057
2 changed files with 5 additions and 6 deletions

View File

@ -540,8 +540,7 @@ mod tests {
.write_to_bytes(&mut buf)
.expect("Serialization failed");
assert_eq!(ser_len, 22);
let (tm_deserialized, size) =
PusTm::from_bytes(&buf, 7).expect("Deserialization failed");
let (tm_deserialized, size) = PusTm::from_bytes(&buf, 7).expect("Deserialization failed");
assert_eq!(ser_len, size);
verify_ping_reply(&tm_deserialized, false, 22, dummy_time_stamp());
}