summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-06-07 20:59:07 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-06-07 20:59:07 +0000
commit7a600166a7bac4b657bc9d8dac948ddde043a629 (patch)
treeccfb08c551b1c29aeb125b89543d0b9de0b7a8e2 /tests
parentfcf8312ade4375faf6027afe610fb76bcdead084 (diff)
Name this test method correctly. Refs [16334].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16336 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/many_to_one_null/tests.py2
1 files changed, 1 insertions, 1 deletions
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),
['<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()