Name this test method correctly. Refs [16334].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16336 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2011-06-07 20:59:07 +00:00
parent fcf8312ade
commit 7a600166a7
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class ManyToOneNullTests(TestCase):
self.assertQuerysetEqual(Article.objects.filter(reporter__isnull=True),
['<Article: First>', '<Article: Fourth>'])
def test_remove_efficiency(self):
def test_clear_efficiency(self):
r = Reporter.objects.create()
for _ in xrange(3):
r.article_set.create()