| Index: tools/lexer_generator/lexer_test.py
|
| diff --git a/tools/lexer_generator/lexer_test.py b/tools/lexer_generator/lexer_test.py
|
| index 53630b95caee2db1255a4179069df68166997a3c..1d1707b124deae8947afaf3ee6c72bd861679698 100644
|
| --- a/tools/lexer_generator/lexer_test.py
|
| +++ b/tools/lexer_generator/lexer_test.py
|
| @@ -39,7 +39,8 @@ class LexerTestCase(unittest.TestCase):
|
| self.assertEquals(expected[i][0], action)
|
| self.assertEquals(expected[i][1], string[start : stop])
|
|
|
| - def __terminate(self):
|
| + @staticmethod
|
| + def __terminate():
|
| return (Action(None, ('terminate', None)), '\0')
|
|
|
| def test_simple(self):
|
|
|