diff options
Diffstat (limited to 'tests/test_regexlexer.py')
-rw-r--r-- | tests/test_regexlexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_regexlexer.py b/tests/test_regexlexer.py index 8e55696c..4029db1d 100644 --- a/tests/test_regexlexer.py +++ b/tests/test_regexlexer.py @@ -48,7 +48,7 @@ def test_tuple(lexer): def test_multiline(lexer): toks = list(lexer.get_tokens_unprocessed('a\ne')) assert toks == [ - (0, Text.Root, 'a'), (1, Text, u'\n'), (2, Text.Root, 'e')] + (0, Text.Root, 'a'), (1, Text, '\n'), (2, Text.Root, 'e')] def test_default(lexer): |