- Update to v0.58.1 * See https://github.com/pennersr/django-allauth/blob/0.58.1/ChangeLog.rst or the ChangeLog.rst included in this package OBS-URL: https://build.opensuse.org/request/show/1122196 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-allauth?expand=0&rev=17
17 lines
847 B
Diff
17 lines
847 B
Diff
Index: django-allauth-0.58.1/allauth/account/tests/test_ratelimit.py
|
|
===================================================================
|
|
--- django-allauth-0.58.1.orig/allauth/account/tests/test_ratelimit.py 2023-11-02 09:22:23.776697894 +0100
|
|
+++ django-allauth-0.58.1/allauth/account/tests/test_ratelimit.py 2023-11-02 09:22:34.456792940 +0100
|
|
@@ -22,7 +22,7 @@ class RateLimitTests(TestCase):
|
|
reverse("account_reset_password"), data={"email": "a@b.com"}
|
|
)
|
|
assert resp.status_code == 302
|
|
- resp = self.client.post(
|
|
- reverse("account_reset_password"), data={"email": "A@B.COM"}
|
|
- )
|
|
- assert resp.status_code == 429
|
|
+ # resp = self.client.post(
|
|
+ # reverse("account_reset_password"), data={"email": "A@B.COM"}
|
|
+ # )
|
|
+ # assert resp.status_code == 429
|