Skip to content

Commit 3f6bd04

Browse files
committed
Fix tests
1 parent 274aea3 commit 3f6bd04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_verification.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_email_unverified_to_verified_and_back(self):
5555
self.assertEqual(getattr(user, self.email_verified_field_name), False)
5656

5757
# Verify
58-
callback_response = self.client.post(self.callback_url)
58+
callback_response = self.client.post(self.verify_url)
5959
self.assertEqual(callback_response.status_code, status.HTTP_200_OK)
6060

6161
# Refresh User
@@ -128,7 +128,7 @@ def test_mobile_unverified_to_verified_and_back(self):
128128
self.assertEqual(getattr(user, self.mobile_verified_field_name), False)
129129

130130
# Verify
131-
callback_response = self.client.post(self.callback_url)
131+
callback_response = self.client.post(self.verify_url)
132132
self.assertEqual(callback_response.status_code, status.HTTP_200_OK)
133133

134134
# Refresh User

0 commit comments

Comments
 (0)