Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Mar 19, 2024
1 parent fdb006d commit a253037
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions posthog/api/test/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ def test_anonymous_user_can_request_password_reset(self, mock_capture):
response = self.client.post("/api/reset/", {"email": self.CONFIG_EMAIL})
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
self.assertEqual(response.content.decode(), "")
self.assertEqual(response.headers["Content-Length"], "0")

user: User = User.objects.get(email=self.CONFIG_EMAIL)
self.assertEqual(
Expand Down

0 comments on commit a253037

Please sign in to comment.