| Index: tools/lexer_generator/automata_test.py
|
| diff --git a/tools/lexer_generator/automata_test.py b/tools/lexer_generator/automata_test.py
|
| index 57fc8a00f68151d4a6c5b10118eb2b04faa4ce62..ea2b7fbfee00ed82c349928efeb58c6aaf98d27a 100644
|
| --- a/tools/lexer_generator/automata_test.py
|
| +++ b/tools/lexer_generator/automata_test.py
|
| @@ -59,7 +59,8 @@ class AutomataTestCase(unittest.TestCase):
|
| ("[ab]{2,3}", ["aa", "ab", "ba", "bb", "aab", "baa", "bbb"],
|
| ["", "a", "b", "aaaa", "bbba"]),
|
| ("[ab]{2,4}", ["aa", "ab", "ba", "bb", "aab", "baa", "bbb", "abab"],
|
| - ["", "a", "b", "aaaba", "bbbaa"])
|
| + ["", "a", "b", "aaaba", "bbbaa"]),
|
| + ("[\\101]", ["A"], ["B"])
|
| ]
|
|
|
| def test_matches(self):
|
|
|