diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-02-06 22:12:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 22:12:25 +0100 |
commit | 59578817f5cef0726f17301396c60dc2c92cba4d (patch) | |
tree | 9e9289f77dd6056073472e997764d94812b4a09e /tests | |
parent | fa1d50ccce6a220631b625aeda54eaf5555ebc66 (diff) | |
parent | 875e6cf7e6d5a469922fc6e542db8388cedcff01 (diff) | |
download | nextcloud-server-59578817f5cef0726f17301396c60dc2c92cba4d.tar.gz nextcloud-server-59578817f5cef0726f17301396c60dc2c92cba4d.zip |
Merge pull request #36489 from nextcloud/bugfix/noid/brute-force-protection-password-reset
Add bruteforce protection to password reset page
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Core/Controller/LostControllerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Core/Controller/LostControllerTest.php b/tests/Core/Controller/LostControllerTest.php index 3f62c522627..e95c3fa1c51 100644 --- a/tests/Core/Controller/LostControllerTest.php +++ b/tests/Core/Controller/LostControllerTest.php @@ -171,6 +171,7 @@ class LostControllerTest extends TestCase { ] ], 'guest'); + $expectedResponse->throttle(); $this->assertEquals($expectedResponse, $response); } |