rust/protover: make test match test name

It was just a copypaste of the test above it.

Fix on commit 15e59a1fed
This commit is contained in:
cypherpunks 2020-02-09 01:10:58 +00:00
parent 41d52e9cd8
commit 955a050bd2

View File

@ -78,7 +78,7 @@ fn parse_protocol_unvalidated_with_empty() {
#[test]
#[should_panic]
fn parse_protocol_validated_with_empty() {
let _: UnvalidatedProtoEntry = "".parse().unwrap();
let _: ProtoEntry = "".parse().unwrap();
}
#[test]