diff --git a/tests/batch_fetch/test_deep_relationships.py b/tests/batch_fetch/test_deep_relationships.py index b837c29..a4b6737 100644 --- a/tests/batch_fetch/test_deep_relationships.py +++ b/tests/batch_fetch/test_deep_relationships.py @@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch, with_backrefs from tests import TestCase -class TestBatchFetch(TestCase): +class TestBatchFetchDeepRelationships(TestCase): def create_models(self): class User(self.Base): __tablename__ = 'user' diff --git a/tests/batch_fetch/test_join_table_inheritance.py b/tests/batch_fetch/test_join_table_inheritance.py index dfab812..95abdec 100644 --- a/tests/batch_fetch/test_join_table_inheritance.py +++ b/tests/batch_fetch/test_join_table_inheritance.py @@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch from tests import TestCase -class TestBatchFetch(TestCase): +class TestBatchFetchAssociations(TestCase): def create_models(self): class Category(self.Base): __tablename__ = 'category' diff --git a/tests/batch_fetch/test_simple_relationships.py b/tests/batch_fetch/test_one_to_many_relationships.py similarity index 97% rename from tests/batch_fetch/test_simple_relationships.py rename to tests/batch_fetch/test_one_to_many_relationships.py index 03dfed7..6ae00ea 100644 --- a/tests/batch_fetch/test_simple_relationships.py +++ b/tests/batch_fetch/test_one_to_many_relationships.py @@ -4,7 +4,7 @@ from sqlalchemy_utils import batch_fetch from tests import TestCase -class TestBatchFetch(TestCase): +class TestBatchFetchOneToManyRelationships(TestCase): def create_models(self): class User(self.Base): __tablename__ = 'user'