From b916c27f9a83c019ff85132712267508f126ca83 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 4 Jun 2019 20:09:07 -0400 Subject: [PATCH] Fixed typo in tests/generic_views/test_base.py. --- tests/generic_views/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "