| Index: tools/json_schema_compiler/idl_schema_test.py
|
| diff --git a/tools/json_schema_compiler/idl_schema_test.py b/tools/json_schema_compiler/idl_schema_test.py
|
| index 85a689e6287a578dd82c865fc75f94055de4eb99..a0457167134b5a2306b385ad20aa1106131ccefd 100755
|
| --- a/tools/json_schema_compiler/idl_schema_test.py
|
| +++ b/tools/json_schema_compiler/idl_schema_test.py
|
| @@ -226,9 +226,10 @@ class IdlSchemaTest(unittest.TestCase):
|
| '$ref': 'MyType1'}],
|
| func['parameters'])
|
| func = getFunction(schema, 'function4')
|
| - self.assertEquals(('This tests if "double-quotes" are escaped correctly.'
|
| - '<br/><br/> It also tests a comment with two newlines.'),
|
| - func['description'])
|
| + self.assertEquals(
|
| + '<p>This tests if "double-quotes" are escaped correctly.</p>'
|
| + '<p>It also tests a comment with two newlines.</p>',
|
| + func['description'])
|
|
|
| def testReservedWords(self):
|
| schema = idl_schema.Load('test/idl_reserved_words.idl')[0]
|
|
|