| Index: tools/json_schema_compiler/dart_generator_test.py
|
| diff --git a/tools/json_schema_compiler/dart_generator_test.py b/tools/json_schema_compiler/dart_generator_test.py
|
| index 65ec7f1e63863ebd53fbe760dab926929aa1b99e..fd88625fc0550105352f8c2ce29d8a3fce9af605 100755
|
| --- a/tools/json_schema_compiler/dart_generator_test.py
|
| +++ b/tools/json_schema_compiler/dart_generator_test.py
|
| @@ -6,9 +6,7 @@
|
| import os
|
| import sys
|
| import unittest
|
| -import glob
|
|
|
| -from dart_generator import DartGenerator
|
| from compiler import GenerateSchema
|
|
|
| # If --rebase is passed to this test, this is set to True, indicating the test
|
| @@ -63,9 +61,6 @@ class DartTest(unittest.TestCase):
|
| self._RunTest('empty_type')
|
|
|
| def testEvents(self):
|
| - self._RunTest('enums')
|
| -
|
| - def testEvents(self):
|
| self._RunTest('events')
|
|
|
| def testBasicFunction(self):
|
| @@ -77,6 +72,7 @@ class DartTest(unittest.TestCase):
|
| def testTags(self):
|
| self._RunTest('tags')
|
|
|
| +
|
| if __name__ == '__main__':
|
| if '--rebase' in sys.argv:
|
| print "Running in rebase mode."
|
|
|