diff options
author | Jack Lloyd <[email protected]> | 2018-08-22 15:54:04 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-08-22 15:54:04 -0400 |
commit | 56468f8a389350516de67005c8e780c4f7743aab (patch) | |
tree | f151e3421fe9532087c9b62468e1a02344086478 /src/tests/data/tls/hello_verify.vec | |
parent | 2fc2598ebab23aa63f7be30c8a2eff6afb262fb3 (diff) |
Simplify exception messages
Remove "Invalid argument" and "Decoding Error" prefixes
Diffstat (limited to 'src/tests/data/tls/hello_verify.vec')
-rw-r--r-- | src/tests/data/tls/hello_verify.vec | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/data/tls/hello_verify.vec b/src/tests/data/tls/hello_verify.vec index f5db9e085..59fc1c337 100644 --- a/src/tests/data/tls/hello_verify.vec +++ b/src/tests/data/tls/hello_verify.vec @@ -10,17 +10,17 @@ Exception = # HelloVerify request has to contain at least 3 bytes Buffer = 0101 -Exception = Invalid argument Decoding error: Hello verify request too small +Exception = Hello verify request too small # HelloVerify has to contain valid protocol version Buffer = 010100 -Exception = Invalid argument Decoding error: Unknown version from server in hello verify request +Exception = Unknown version from server in hello verify request # HelloVerify has to contain valid number of bytes Buffer = FEFD0000 -Exception = Invalid argument Decoding error: Bad length in hello verify request +Exception = Bad length in hello verify request # HelloVerify has to contain valid number of bytes Buffer = FEFD0500 -Exception = Invalid argument Decoding error: Bad length in hello verify request +Exception = Bad length in hello verify request |