summaryrefslogtreecommitdiff
path: root/tests/generic_views
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2019-06-04 20:09:07 -0400
committerTim Graham <timograham@gmail.com>2019-06-04 20:09:07 -0400
commitb916c27f9a83c019ff85132712267508f126ca83 (patch)
treea10450c894e33756d1e439f43e53e7d067e5f6f0 /tests/generic_views
parent8a187bfa3b20f5234024fe6afbdcac161ac13a78 (diff)
downloaddjango-b916c27f9a83c019ff85132712267508f126ca83.tar.gz
Fixed typo in tests/generic_views/test_base.py.
Diffstat (limited to 'tests/generic_views')
-rw-r--r--tests/generic_views/test_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generic_views/test_base.py b/tests/generic_views/test_base.py
index da12b1bbe8..e48413d4a4 100644
--- a/tests/generic_views/test_base.py
+++ b/tests/generic_views/test_base.py
@@ -250,7 +250,7 @@ class ViewTest(SimpleTestCase):
def test_not_calling_parent_setup_error(self):
class TestView(View):
def setup(self, request, *args, **kwargs):
- pass # Not calling supre().setup()
+ pass # Not calling super().setup()
msg = (
"TestView instance has no 'request' attribute. Did you override "