Index: tools/json_schema_compiler/model_test.py |
diff --git a/tools/json_schema_compiler/model_test.py b/tools/json_schema_compiler/model_test.py |
index 5003af91e240ac21b8b0615349cd50c7d94ed69c..bdd200928105263603883e6f927d83e0626f1870 100755 |
--- a/tools/json_schema_compiler/model_test.py |
+++ b/tools/json_schema_compiler/model_test.py |
@@ -98,7 +98,8 @@ class ModelTest(unittest.TestCase): |
'foo_Bar_Baz_box': 'foo_bar_baz_box', |
} |
for name in expectations: |
- self.assertEquals(expectations[name], model.UnixName(name)); |
+ self.assertEquals(expectations[name], model.UnixName(name)) |
+ |
if __name__ == '__main__': |
unittest.main() |