From 7a600166a7bac4b657bc9d8dac948ddde043a629 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 7 Jun 2011 20:59:07 +0000 Subject: [PATCH] Name this test method correctly. Refs [16334]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16336 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/many_to_one_null/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()