Skip to content

Commit

Permalink
[RED] Fix test for logout.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesSetiawan committed Feb 22, 2024
1 parent e5174fd commit 4215204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authentication/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def setUp(self):
self.user = AppUser.objects.create_user(email='[email protected]',username='testuser',password='test')
self.client.login(username = 'testuser', password = 'test')

def logoutTest(self):
def testLogout(self):
response = self.client.post(LOGOUT_LINK)
self.assertEqual(response.status_code, 200)

0 comments on commit 4215204

Please sign in to comment.