summaryrefslogtreecommitdiff
path: root/pygments/lexers/testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/testing.py')
-rw-r--r--pygments/lexers/testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/testing.py b/pygments/lexers/testing.py
index 0bdebe74..be8b6f71 100644
--- a/pygments/lexers/testing.py
+++ b/pygments/lexers/testing.py
@@ -147,7 +147,7 @@ class TAPLexer(RegexLexer):
(r'^TAP version \d+\n', Name.Namespace),
# Specify a plan with a plan line.
- (r'^1..\d+', Keyword.Declaration, 'plan'),
+ (r'^1\.\.\d+', Keyword.Declaration, 'plan'),
# A test failure
(r'^(not ok)([^\S\n]*)(\d*)',