Merge "Fix the order of base classes in DB test cases"

This commit is contained in:
Jenkins 2015-02-25 18:52:15 +00:00 committed by Gerrit Code Review
commit f057e287f6

View File

@ -37,32 +37,32 @@ class VersionStoreSQLAlchemyTestCase(SQLAlchemyTestCase,
pass pass
class MySQLBaseStoreTestCase(BaseStoreSQLAlchemyTestCase, class MySQLBaseStoreTestCase(test_base.MySQLOpportunisticTestCase,
test_base.MySQLOpportunisticTestCase): BaseStoreSQLAlchemyTestCase):
pass pass
class MySQLNamedStoreTestCase(NamedStoreSQLAlchemyTestCase, class MySQLNamedStoreTestCase(test_base.MySQLOpportunisticTestCase,
test_base.MySQLOpportunisticTestCase): NamedStoreSQLAlchemyTestCase):
pass pass
class MySQLVersionedStoreTestCase(VersionStoreSQLAlchemyTestCase, class MySQLVersionedStoreTestCase(test_base.MySQLOpportunisticTestCase,
test_base.MySQLOpportunisticTestCase): VersionStoreSQLAlchemyTestCase):
pass pass
class PostgreSQLBaseStoreTestCase(BaseStoreSQLAlchemyTestCase, class PostgreSQLBaseStoreTestCase(test_base.PostgreSQLOpportunisticTestCase,
test_base.PostgreSQLOpportunisticTestCase): BaseStoreSQLAlchemyTestCase):
pass pass
class PostgreSQLNamedStoreTestCase(NamedStoreSQLAlchemyTestCase, class PostgreSQLNamedStoreTestCase(test_base.PostgreSQLOpportunisticTestCase,
test_base.PostgreSQLOpportunisticTestCase): NamedStoreSQLAlchemyTestCase):
pass pass
class PostgreSQLVersionedStoreTestCase( class PostgreSQLVersionedStoreTestCase(
VersionStoreSQLAlchemyTestCase, test_base.PostgreSQLOpportunisticTestCase,
test_base.PostgreSQLOpportunisticTestCase): VersionStoreSQLAlchemyTestCase):
pass pass