diff --git a/tests/modeltests/many_to_one_null/tests.py b/tests/modeltests/many_to_one_null/tests.py index 0850cca2b1..41341bee00 100644 --- a/tests/modeltests/many_to_one_null/tests.py +++ b/tests/modeltests/many_to_one_null/tests.py @@ -85,7 +85,7 @@ class ManyToOneNullTests(TestCase): self.assertQuerysetEqual(Article.objects.filter(reporter__isnull=True), ['', '']) - def test_remove_efficiency(self): + def test_clear_efficiency(self): r = Reporter.objects.create() for _ in xrange(3): r.article_set.create()