accounts: loggout: test: remove useless var

This commit is contained in:
starnakin 2024-01-17 19:05:50 +01:00
parent f5b2c01633
commit 6983983e58

View File

@ -13,5 +13,5 @@ class LoginTest(TestCase):
self.client.login() self.client.login()
def test_normal_logout(self): def test_normal_logout(self):
response: HttpResponse = self.client.post(self.url) self.client.post(self.url)
self.assertNotIn('_auth_user_id', self.client.session) self.assertNotIn('_auth_user_id', self.client.session)