This commit is contained in:
Rostyslav Tyshko 2025-05-02 17:28:14 -04:00
parent d351958458
commit 01e3c0fe54

View File

@ -316,6 +316,9 @@ mod tests {
let state = PrivateSCState::new();
let result = read_num_bytes_start(&state, PRIVATE_BLOB_SIZE * 2);
assert!(matches!(result, Err(PrivateStateError::ReadSizeMismatch(_, _))));
assert!(matches!(
result,
Err(PrivateStateError::ReadSizeMismatch(_, _))
));
}
}