1
0
mirror of https://github.com/django/django.git synced 2025-03-14 11:20:46 +00:00

[1.5.x] Fixed a typo in the test suite that was causing some spurious failures with pypy.

Backport of 6afc85af47f7d9f44
This commit is contained in:
Julien Phalip 2013-02-06 22:10:13 -08:00
parent 20ac33100c
commit 5ba76825cf

View File

@ -227,7 +227,7 @@ class DeletionTests(TestCase):
)
models.signals.post_delete.disconnect(log_post_delete)
models.signals.post_delete.disconnect(log_pre_delete)
models.signals.pre_delete.disconnect(log_pre_delete)
@skipUnlessDBFeature("can_defer_constraint_checks")
def test_can_defer_constraint_checks(self):