summaryrefslogtreecommitdiff
path: root/tests/test_perllexer.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_perllexer.py')
-rw-r--r--tests/test_perllexer.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_perllexer.py b/tests/test_perllexer.py
index 30f9eca8..8e5af3e5 100644
--- a/tests/test_perllexer.py
+++ b/tests/test_perllexer.py
@@ -124,10 +124,6 @@ class RunawayRegexTest(unittest.TestCase):
self.assert_single_token(r's<aaa>', String.Regex)
self.assert_fast_tokenization('s<' + '\\'*999)
- def test_substitution_with_angle_bracket(self):
- self.assert_single_token(r's<aaa>', String.Regex)
- self.assert_fast_tokenization('s<' + '\\'*999)
-
def test_substitution_with_square_bracket(self):
self.assert_single_token(r's[aaa]', String.Regex)
self.assert_fast_tokenization('s[' + '\\'*999)
@@ -154,4 +150,3 @@ class RunawayRegexTest(unittest.TestCase):
self.assert_tokens(['require', ' ', 'Foo'], [Keyword, Text, Name.Namespace])
self.assert_tokens(['require', ' ', 'Foo::Bar'], [Keyword, Text, Name.Namespace])
self.assert_tokens(['require', ' ', '"Foo/Bar.pm"'], [Keyword, Text, String])
-