Merge "Fix the order of base classes in DB test cases"
This commit is contained in:
commit
f057e287f6
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user