diff options
author | domspad <devnull@localhost> | 2016-06-02 14:23:01 -0700 |
---|---|---|
committer | domspad <devnull@localhost> | 2016-06-02 14:23:01 -0700 |
commit | 0435bbf2b2de3d90cd3053e0a90bfeedb9243b63 (patch) | |
tree | 8a1281c6a63ff15b964210244d6f0074335f50fc | |
parent | 609e62a32994cacaaa0f2676eff1f992317dd769 (diff) | |
download | pygments-0435bbf2b2de3d90cd3053e0a90bfeedb9243b63.tar.gz |
typo
-rw-r--r-- | tests/test_python.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_python.py b/tests/test_python.py index 62c155f7..f5784cb1 100644 --- a/tests/test_python.py +++ b/tests/test_python.py @@ -50,9 +50,9 @@ class PythonTest(unittest.TestCase): self.assertEqual(tokens, list(self.lexer.get_tokens(fragment))) -class Python3Test(unittest.TestClass): +class Python3Test(unittest.TestCase): def setUp(self): - self.lexer = Python3Lexer + self.lexer = Python3Lexer() def testNeedsName(self): """ |