summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-12-15 22:42:17 +0100
committerTim Graham <timograham@gmail.com>2014-12-15 17:54:40 -0500
commit3ef50a772b6419c0c41635f80995df25fbc5116e (patch)
tree59225d60469cefe87eb9270b1276945924e78461 /tests
parentd8f3b86a7691c8aa0ec8f5a064ad4c3218250fed (diff)
Fixed reverse test execution for migration manager tests
Thanks to Tim Graham for reporting the issue; refs #23822
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_writer.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/migrations/test_writer.py b/tests/migrations/test_writer.py
index c42008c9d3..71841a11d1 100644
--- a/tests/migrations/test_writer.py
+++ b/tests/migrations/test_writer.py
@@ -19,10 +19,11 @@ from django.utils.deconstruct import deconstructible
from django.utils.translation import ugettext_lazy as _
from django.utils.timezone import get_default_timezone, utc, FixedOffset
-from custom_managers import models as custom_manager_models
import custom_migration_operations.operations
import custom_migration_operations.more_operations
+from .models import FoodQuerySet, FoodManager
+
class TestModel1(object):
def upload_to(self):
@@ -356,8 +357,8 @@ class WriterTests(TestCase):
def test_serialize_managers(self):
self.assertSerializedEqual(models.Manager())
self.assertSerializedResultEqual(
- custom_manager_models.CustomQuerySet.as_manager(),
- ('custom_managers.models.CustomQuerySet.as_manager()', {'import custom_managers.models'})
+ FoodQuerySet.as_manager(),
+ ('migrations.models.FoodQuerySet.as_manager()', {'import migrations.models'})
)
- self.assertSerializedEqual(custom_manager_models.DeconstructibleCustomManager('a', 'b'))
- self.assertSerializedEqual(custom_manager_models.DeconstructibleCustomManager('x', 'y', c=3, d=4))
+ self.assertSerializedEqual(FoodManager('a', 'b'))
+ self.assertSerializedEqual(FoodManager('x', 'y', c=3, d=4))