1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

expr: Fix testing UnmatchedOpeningBrace

This commit is contained in:
Teemu Pätsi 2025-05-27 04:25:54 +03:00
parent 6b49b26af7
commit 639310c697
No known key found for this signature in database

View file

@ -992,7 +992,7 @@ mod test {
);
assert_eq!(
check_posix_regex_errors(r"\{1,2"),
check_posix_regex_errors(r"a\{1,2"),
Err(ExprError::UnmatchedOpeningBrace)
);
}