0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 20:03:07 +02:00

Handle another possible error on our sealed sender fuzzing test

This commit is contained in:
Jack Lloyd 2021-01-07 13:54:37 -05:00
parent 9e208765de
commit f6a6b210f5

View File

@ -100,6 +100,7 @@ fn test_sender_cert() -> Result<(), SignalProtocolError> {
Err(e) => match e {
SignalProtocolError::InvalidProtobufEncoding
| SignalProtocolError::ProtobufDecodingError(_)
| SignalProtocolError::BadKeyLength(_, _)
| SignalProtocolError::BadKeyType(_) => {}
unexpected_err => {