Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cachebot/tests/base_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from django.db.models import Q
from django.test import TestCase

from cachebot.models import FirstModel, SecondModel, ThirdModel, GenericModel, ManyModel
from cachebot.test_models import FirstModel, SecondModel, ThirdModel, GenericModel, ManyModel
from cachebot.utils import flush_cache

class BaseTestCase(TestCase):
Expand Down
2 changes: 1 addition & 1 deletion cachebot/tests/manager_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from django.conf import settings

from cachebot import conf
from cachebot.models import FirstModel
from cachebot.test_models import FirstModel
from cachebot.tests.base_tests import BaseTestCase, BasicCacheTests, FieldCacheTests, RelatedCacheTests, ExtraRelatedCacheTests

class GetBasicCacheTests(BasicCacheTests):
Expand Down
2 changes: 1 addition & 1 deletion cachebot/tests/many_to_many_tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from cachebot.models import ManyModel
from cachebot.test_models import ManyModel
from cachebot.tests.base_tests import BasicCacheTests, RelatedCacheTests

class BasicManyToManyCacheTests(BasicCacheTests):
Expand Down
2 changes: 1 addition & 1 deletion cachebot/tests/no_cache_tests.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from cachebot import conf
from cachebot.models import FirstModel, NoCacheModel
from cachebot.test_models import FirstModel, NoCacheModel
from cachebot.tests.base_tests import BaseTestCase

class BlacklistCacheTests(BaseTestCase):
Expand Down
2 changes: 1 addition & 1 deletion cachebot/tests/reverse_lookup_tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from cachebot.models import FirstModel
from cachebot.test_models import FirstModel
from cachebot.tests.base_tests import RelatedCacheTests, ExtraRelatedCacheTests

class ReverseRelatedCacheTests(RelatedCacheTests):
Expand Down
2 changes: 1 addition & 1 deletion cachebot/tests/values_tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from cachebot.models import ThirdModel
from cachebot.test_models import ThirdModel
from cachebot.tests.base_tests import BasicCacheTests, RelatedCacheTests, ExtraRelatedCacheTests

class ValuesBasicCacheTests1(BasicCacheTests):
Expand Down