Fix duplicated test case for re. (GH-12662)
This commit is contained in:
parent
461c416dd7
commit
ded4737989
|
@ -109,7 +109,7 @@ tests = [
|
||||||
('(?s)a.b', 'a\nb', SUCCEED, 'found', 'a\nb'),
|
('(?s)a.b', 'a\nb', SUCCEED, 'found', 'a\nb'),
|
||||||
('(?s)a.*b', 'acc\nccb', SUCCEED, 'found', 'acc\nccb'),
|
('(?s)a.*b', 'acc\nccb', SUCCEED, 'found', 'acc\nccb'),
|
||||||
('(?s)a.{4,5}b', 'acc\nccb', SUCCEED, 'found', 'acc\nccb'),
|
('(?s)a.{4,5}b', 'acc\nccb', SUCCEED, 'found', 'acc\nccb'),
|
||||||
('(?s)a.b', 'a\nb', SUCCEED, 'found', 'a\nb'),
|
('(?s)a.b', 'a\rb', SUCCEED, 'found', 'a\rb'),
|
||||||
|
|
||||||
(')', '', SYNTAX_ERROR), # Unmatched right bracket
|
(')', '', SYNTAX_ERROR), # Unmatched right bracket
|
||||||
('', '', SUCCEED, 'found', ''), # Empty pattern
|
('', '', SUCCEED, 'found', ''), # Empty pattern
|
||||||
|
|
Loading…
Reference in New Issue