summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_remote_user.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auth_tests/test_remote_user.py')
-rw-r--r--tests/auth_tests/test_remote_user.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/auth_tests/test_remote_user.py b/tests/auth_tests/test_remote_user.py
index 6066ab96e9..d3cf4b9da5 100644
--- a/tests/auth_tests/test_remote_user.py
+++ b/tests/auth_tests/test_remote_user.py
@@ -20,13 +20,15 @@ class RemoteUserTest(TestCase):
known_user = "knownuser"
known_user2 = "knownuser2"
- def setUp(self):
- patched_settings = modify_settings(
- AUTHENTICATION_BACKENDS={"append": self.backend},
- MIDDLEWARE={"append": self.middleware},
+ @classmethod
+ def setUpClass(cls):
+ cls.enterClassContext(
+ modify_settings(
+ AUTHENTICATION_BACKENDS={"append": cls.backend},
+ MIDDLEWARE={"append": cls.middleware},
+ )
)
- patched_settings.enable()
- self.addCleanup(patched_settings.disable)
+ super().setUpClass()
def test_no_remote_user(self):
"""Users are not created when remote user is not specified."""