| Index: mojo/public/tools/bindings/pylib/mojom_tests/parse/lexer_unittest.py
|
| diff --git a/mojo/public/tools/bindings/pylib/mojom_tests/parse/lexer_unittest.py b/mojo/public/tools/bindings/pylib/mojom_tests/parse/lexer_unittest.py
|
| index 58d11eb45862cffc1d6c7c44df762c1416f1e02c..5605c7ffd13a8046751fe27a2a7de4a64fba543e 100644
|
| --- a/mojo/public/tools/bindings/pylib/mojom_tests/parse/lexer_unittest.py
|
| +++ b/mojo/public/tools/bindings/pylib/mojom_tests/parse/lexer_unittest.py
|
| @@ -135,6 +135,8 @@ class LexerTest(unittest.TestCase):
|
| _MakeLexToken("MINUS", "-"))
|
| self.assertEquals(self._SingleTokenForInput("&"),
|
| _MakeLexToken("AMP", "&"))
|
| + self.assertEquals(self._SingleTokenForInput("?"),
|
| + _MakeLexToken("QSTN", "?"))
|
| self.assertEquals(self._SingleTokenForInput("="),
|
| _MakeLexToken("EQUALS", "="))
|
| self.assertEquals(self._SingleTokenForInput("=>"),
|
|
|