File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -458,19 +458,19 @@ mod tests {
458458 std:: thread:: Builder :: new ( )
459459 . stack_size ( 8 * 1024 * 1024 )
460460 . spawn ( move || {
461- match_input_buffer ( & input[ ..] ) . expect ( "failed to detect buffer " ) ;
461+ match_input_buffer ( & input[ ..] ) . expect ( "buffer should be valid MessagePack " ) ;
462462 super :: transcode (
463463 input:: Handle :: from_slice ( & input[ ..] ) ,
464464 super :: Output :: new ( io:: sink ( ) ) ,
465465 )
466- . expect ( "failed to translate buffer " ) ;
466+ . expect ( "buffer should be valid MessagePack " ) ;
467467
468- match_input_reader ( & input[ ..] ) . expect ( "failed to detect reader " ) ;
468+ match_input_reader ( & input[ ..] ) . expect ( "buffer should be valid MessagePack " ) ;
469469 super :: transcode (
470470 input:: Handle :: from_reader ( & input[ ..] ) ,
471471 super :: Output :: new ( io:: sink ( ) ) ,
472472 )
473- . expect ( "failed to translate reader " ) ;
473+ . expect ( "buffer should be valid MessagePack " ) ;
474474 } )
475475 . unwrap ( )
476476 . join ( )
You can’t perform that action at this time.
0 commit comments