commit 419ea2f813c83a2065396ac085c9525dd2e1f137
parent 955a050bd20eedbcdc2b96aa257ba30b0cfd3888
Author: cypherpunks <cypherpunks@torproject.org>
Date: Sun, 9 Feb 2020 01:01:25 +0000
rust/protover: remove redundant test
commit 15e59a1fedf47e7e689e06e5649849552d8b8c0d added a test
for parsing an empty string twice.
Diffstat:
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/rust/protover/protover.rs b/src/rust/protover/protover.rs
@@ -875,11 +875,6 @@ mod test {
}
#[test]
- fn test_protoentry_from_str_() {
- assert_protoentry_is_unparseable!("");
- }
-
- #[test]
fn test_protoentry_all_supported_single_protocol_single_version() {
let protocol: UnvalidatedProtoEntry = "Cons=1".parse().unwrap();
let unsupported: Option<UnvalidatedProtoEntry> = protocol.all_supported();