Kaydet (Commit) 0841a31b authored tarafından Tim Graham's avatar Tim Graham

Fixed admin_views IntegrityError test failure.

Regression in 38a5a23c.
üst 38a5a23c
......@@ -3236,10 +3236,9 @@ class AdminActionsTest(TestCase):
the objects selected for deletion are rendered without separators.
Refs #14895.
"""
new_pk = 9999
ExternalSubscriber.objects.filter(id=self.s1.id).update(id=new_pk)
s = ExternalSubscriber.objects.create(id=9999)
action_data = {
ACTION_CHECKBOX_NAME: [new_pk, self.s2.pk],
ACTION_CHECKBOX_NAME: [s.pk, self.s2.pk],
'action': 'delete_selected',
'index': 0,
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment