CFDP initial packet support #14
@ -348,7 +348,10 @@ mod tests {
|
|||||||
assert_eq!(buf[current_idx], 1);
|
assert_eq!(buf[current_idx], 1);
|
||||||
current_idx += 1;
|
current_idx += 1;
|
||||||
// Still verify that the rest is written correctly.
|
// Still verify that the rest is written correctly.
|
||||||
assert_eq!(u32::from_be_bytes(buf[current_idx..current_idx+4].try_into().unwrap()), 10);
|
assert_eq!(
|
||||||
|
u32::from_be_bytes(buf[current_idx..current_idx + 4].try_into().unwrap()),
|
||||||
|
10
|
||||||
|
);
|
||||||
current_idx += 4;
|
current_idx += 4;
|
||||||
assert_eq!(buf[current_idx], 1);
|
assert_eq!(buf[current_idx], 1);
|
||||||
current_idx += 1;
|
current_idx += 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user