diff options
author | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-03-02 22:44:38 +0000 |
---|---|---|
committer | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-03-02 22:44:38 +0000 |
commit | 2a2bab8918f72f59bd0f78874bc8f68e90150479 (patch) | |
tree | 6669f57ba321eb202b286f8b0ae94b58f4859526 | |
parent | 8a530832c599f8866e98947976d74a5332d877af (diff) | |
download | nova-2a2bab8918f72f59bd0f78874bc8f68e90150479.tar.gz nova-2a2bab8918f72f59bd0f78874bc8f68e90150479.tar.xz nova-2a2bab8918f72f59bd0f78874bc8f68e90150479.zip |
Remove superfluous __init__ from test case
Change-Id: I4bb9855a8999df2ef91ddcac8e84b476523e753b
-rw-r--r-- | nova/tests/test_migrations.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/tests/test_migrations.py b/nova/tests/test_migrations.py index 4ec3dbc76..451267abe 100644 --- a/nova/tests/test_migrations.py +++ b/nova/tests/test_migrations.py @@ -84,9 +84,6 @@ class TestMigrations(unittest.TestCase): MIGRATE_FILE = nova.db.sqlalchemy.migrate_repo.__file__ REPOSITORY = Repository(os.path.abspath(os.path.dirname(MIGRATE_FILE))) - def __init__(self, *args, **kwargs): - super(TestMigrations, self).__init__(*args, **kwargs) - def setUp(self): super(TestMigrations, self).setUp() |