diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-01-23 17:29:57 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-01-23 17:29:57 +0000 |
commit | 86c2ad2498aaeb3bb5dfca7ac432dbaa5eaebe1c (patch) | |
tree | c2dee5fb29bb9f12645e5fa7808e01c264d3516a | |
parent | ae4a2d1d0e7a5ba81b1b9021aa61d5b5fd32d595 (diff) | |
parent | f9bfc241bd8d6d5ba493e92d35f7c2ee4d265776 (diff) | |
download | nova-86c2ad2498aaeb3bb5dfca7ac432dbaa5eaebe1c.tar.gz nova-86c2ad2498aaeb3bb5dfca7ac432dbaa5eaebe1c.tar.xz nova-86c2ad2498aaeb3bb5dfca7ac432dbaa5eaebe1c.zip |
Merge "don't clear the database dicts in the tearDown method"
-rw-r--r-- | nova/tests/test_migrations.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/nova/tests/test_migrations.py b/nova/tests/test_migrations.py index a6c150971..3e9da9594 100644 --- a/nova/tests/test_migrations.py +++ b/nova/tests/test_migrations.py @@ -136,12 +136,6 @@ class TestMigrations(test.TestCase): # and recreate it, which ensures that we have no side-effects # from the tests self._reset_databases() - - # remove these from the list so they aren't used in the migration tests - if "mysqlcitest" in self.engines: - del self.engines["mysqlcitest"] - if "mysqlcitest" in self.test_databases: - del self.test_databases["mysqlcitest"] super(TestMigrations, self).tearDown() def _reset_databases(self): |