| 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 a5fb37c47edc82b36c53fa2e0b52a72266e35ebf..5aea9f6678bf31ffc8a8ac6629b4cbc8bec7461f 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
|
| @@ -143,6 +143,8 @@ class LexerTest(unittest.TestCase):
|
| _MakeLexToken("LSHIFT", "<<"))
|
| self.assertEquals(self._SingleTokenForInput(">>"),
|
| _MakeLexToken("RSHIFT", ">>"))
|
| + self.assertEquals(self._SingleTokenForInput("&"),
|
| + _MakeLexToken("AMP", "&"))
|
| self.assertEquals(self._SingleTokenForInput("="),
|
| _MakeLexToken("EQUALS", "="))
|
| self.assertEquals(self._SingleTokenForInput("=>"),
|
|
|