Skip to content

Commit b4f52f9

Browse files
committed
.
1 parent f0919a2 commit b4f52f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/canonicalize.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6530,12 +6530,12 @@ mod canonicalize_tests {
65306530
fn test_roman_numeral_regex() {
65316531
assert!(UPPER_ROMAN_NUMERAL.is_match("XII"));
65326532
assert!(UPPER_ROMAN_NUMERAL.is_match("V "));
6533-
assert!(!UPPER_ROMAN_NUMERAL.is_match(" XII"));
6533+
assert!(!UPPER_ROMAN_NUMERAL.is_match(" II"));
65346534
assert!(!UPPER_ROMAN_NUMERAL.is_match(" MCMXCIX "));
65356535

65366536
assert!(LOWER_ROMAN_NUMERAL.is_match("xii"));
65376537
assert!(LOWER_ROMAN_NUMERAL.is_match("v "));
6538-
assert!(!LOWER_ROMAN_NUMERAL.is_match(" xii"));
6538+
assert!(!LOWER_ROMAN_NUMERAL.is_match(" ii"));
65396539
assert!(!LOWER_ROMAN_NUMERAL.is_match(" mcmxcix "));
65406540
}
65416541

0 commit comments

Comments
 (0)