diff options
author | Joas Schilling <coding@schilljs.com> | 2022-11-18 14:44:41 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-11-18 15:39:23 +0100 |
commit | d1f2e5e967884e148e2480e470d6886977c5941e (patch) | |
tree | 7341c954d59859990dcc2a9dc1c99228502f2f66 /tests | |
parent | 473647a467d807703818f3d9f55352825a345bea (diff) | |
download | nextcloud-server-d1f2e5e967884e148e2480e470d6886977c5941e.tar.gz nextcloud-server-d1f2e5e967884e148e2480e470d6886977c5941e.zip |
Increase the fair-use push limit to 1.000 users
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Notification/ManagerTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/Notification/ManagerTest.php b/tests/lib/Notification/ManagerTest.php index e482ba3876b..a32eebcdb95 100644 --- a/tests/lib/Notification/ManagerTest.php +++ b/tests/lib/Notification/ManagerTest.php @@ -248,10 +248,10 @@ class ManagerTest extends TestCase { public function dataIsFairUseOfFreePushService(): array { return [ - [true, 499, true], - [true, 500, true], - [false, 499, true], - [false, 500, false], + [true, 999, true], + [true, 1000, true], + [false, 999, true], + [false, 1000, false], ]; } |