Kaydet (Commit) ded47379 authored tarafından MakDon's avatar MakDon Kaydeden (comit) Serhiy Storchaka

Fix duplicated test case for re. (GH-12662)

üst 461c416d
No related merge requests found
......@@ -109,7 +109,7 @@ tests = [
('(?s)a.b', 'a\nb', SUCCEED, 'found', 'a\nb'),
('(?s)a.*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
('', '', SUCCEED, 'found', ''), # Empty pattern
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment