summaryrefslogtreecommitdiff
path: root/tests/modeladmin
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-03-08 09:15:23 -0500
committerSimon Charette <charette.s@gmail.com>2013-03-08 10:11:45 -0500
commit6983a1a540a6e6c3bd941fa15ddd8cb49f9ec74e (patch)
treee57559ebfd704705458e6e218dc1f3d868b2922c /tests/modeladmin
parent477d737e1e6bdf93950c8a381906925c594fac2f (diff)
downloaddjango-6983a1a540a6e6c3bd941fa15ddd8cb49f9ec74e.tar.gz
Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that return a QuerySet.
Diffstat (limited to 'tests/modeladmin')
-rw-r--r--tests/modeladmin/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeladmin/tests.py b/tests/modeladmin/tests.py
index b0a181218b..e5450ab8ff 100644
--- a/tests/modeladmin/tests.py
+++ b/tests/modeladmin/tests.py
@@ -69,7 +69,7 @@ class ModelAdminTests(TestCase):
# If we specify the fields argument, fieldsets_add and fielsets_change should
# just stick the fields into a formsets structure and return it.
class BandAdmin(ModelAdmin):
- fields = ['name']
+ fields = ['name']
ma = BandAdmin(Band, self.site)
@@ -1074,7 +1074,7 @@ class ValidationTests(unittest.TestCase):
return 'awesomeness'
def get_choices(self, request):
return (('bit', 'A bit awesome'), ('very', 'Very awesome'), )
- def get_query_set(self, cl, qs):
+ def get_queryset(self, cl, qs):
return qs
class ValidationTestModelAdmin(ModelAdmin):