| Index: client/dom/scripts/dartgenerator_test.py
|
| diff --git a/client/dom/scripts/dartgenerator_test.py b/client/dom/scripts/dartgenerator_test.py
|
| index 290a2a416dbecf60702056e8b1e82484eab53e96..3ee28947b2491a8bd05099759a5e66b5108b2f34 100755
|
| --- a/client/dom/scripts/dartgenerator_test.py
|
| +++ b/client/dom/scripts/dartgenerator_test.py
|
| @@ -77,13 +77,11 @@ FILE CONTENT:
|
| self._output_dir = os.path.join(self._working_dir, 'output')
|
| self._database_dir = os.path.join(self._working_dir, 'database')
|
| self._auxiliary_dir = os.path.join(self._working_dir, 'auxiliary')
|
| - self._snippet_dir = os.path.join(self._working_dir, 'snippet')
|
| self.assertFalse(os.path.exists(self._database_dir))
|
|
|
| # Create database and add one interface.
|
| db = database.Database(self._database_dir)
|
| os.mkdir(self._auxiliary_dir)
|
| - os.mkdir(self._snippet_dir)
|
| self.assertTrue(os.path.exists(self._database_dir))
|
|
|
| content = """
|
| @@ -133,13 +131,11 @@ FILE CONTENT:
|
|
|
| self._database = database.Database(self._database_dir)
|
| self._generator = dartgenerator.DartGenerator(self._auxiliary_dir,
|
| - self._snippet_dir,
|
| 'test')
|
|
|
| def tearDown(self):
|
| shutil.rmtree(self._database_dir)
|
| shutil.rmtree(self._auxiliary_dir)
|
| - shutil.rmtree(self._snippet_dir)
|
|
|
| def testBasicGeneration(self):
|
| # Generate all interfaces:
|
|
|