From a89a2e82e69199f92823955ee6f2eb9dafb00489 Mon Sep 17 00:00:00 2001 From: Colin Davidson Date: Sun, 17 Jan 2016 12:17:52 -0800 Subject: [PATCH] Fix test names Upper and Lower test names were swapped --- src/bigint.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bigint.rs b/src/bigint.rs index 6255070..65edeb6 100644 --- a/src/bigint.rs +++ b/src/bigint.rs @@ -3724,7 +3724,7 @@ mod biguint_tests { } #[test] - fn test_upper_hex() { + fn test_lower_hex() { let a = BigUint::parse_bytes(b"A", 16).unwrap(); let hello = BigUint::parse_bytes("22405534230753963835153736737".as_bytes(), 10).unwrap(); @@ -3733,7 +3733,7 @@ mod biguint_tests { } #[test] - fn test_lower_hex() { + fn test_upper_hex() { let a = BigUint::parse_bytes(b"A", 16).unwrap(); let hello = BigUint::parse_bytes("22405534230753963835153736737".as_bytes(), 10).unwrap();