summaryrefslogtreecommitdiff
path: root/tests/test_crystal.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_crystal.py')
-rw-r--r--tests/test_crystal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_crystal.py b/tests/test_crystal.py
index 9a1588f2..efbab68d 100644
--- a/tests/test_crystal.py
+++ b/tests/test_crystal.py
@@ -10,7 +10,7 @@
from __future__ import unicode_literals
import unittest
-from pygments.token import Text, Comment, Operator, Keyword, Name, String, \
+from pygments.token import Text, Operator, Keyword, Name, String, \
Number, Punctuation, Error
from pygments.lexers import CrystalLexer
@@ -122,7 +122,7 @@ class CrystalTest(unittest.TestCase):
(Text, '\n')
]
self.assertEqual(tokens, list(self.lexer.get_tokens(fragment)))
-
+
def testArrayAccess(self):
fragment = '[5][5]?\n'
tokens = [