From 2a2bab8918f72f59bd0f78874bc8f68e90150479 Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Fri, 2 Mar 2012 22:44:38 +0000 Subject: Remove superfluous __init__ from test case Change-Id: I4bb9855a8999df2ef91ddcac8e84b476523e753b --- nova/tests/test_migrations.py | 3 --- 1 file changed, 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() -- cgit