mirror of
https://github.com/django/django.git
synced 2024-12-23 01:25:58 +00:00
Fixed AdminViewDeletedObjectsTest.test_cyclic failure when using --keepdb.
This changes to hardcoded pks when hardcoded fks are used.
This commit is contained in:
parent
845a5db38f
commit
29b6a177d8
@ -3371,8 +3371,8 @@ class AdminViewDeletedObjectsTest(TestCase):
|
|||||||
cls.ssh1 = SuperSecretHideout.objects.create(
|
cls.ssh1 = SuperSecretHideout.objects.create(
|
||||||
location="super floating castle!", supervillain=cls.sv1
|
location="super floating castle!", supervillain=cls.sv1
|
||||||
)
|
)
|
||||||
cls.cy1 = CyclicOne.objects.create(name="I am recursive", two_id=1)
|
cls.cy1 = CyclicOne.objects.create(pk=1, name="I am recursive", two_id=1)
|
||||||
cls.cy2 = CyclicTwo.objects.create(name="I am recursive too", one_id=1)
|
cls.cy2 = CyclicTwo.objects.create(pk=1, name="I am recursive too", one_id=1)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.client.force_login(self.superuser)
|
self.client.force_login(self.superuser)
|
||||||
|
Loading…
Reference in New Issue
Block a user