mirror of
https://github.com/nextcloud/server.git
synced 2026-03-28 21:33:40 -04:00
Merge pull request #33778 from nextcloud/followup/33770/fix-unit-tests
Fix unit tests
This commit is contained in:
commit
2600a00c00
2 changed files with 5 additions and 5 deletions
|
|
@ -260,7 +260,7 @@ class LoginControllerTest extends TestCase {
|
|||
[
|
||||
'MessageArray1',
|
||||
'MessageArray2',
|
||||
'This community release of Nextcloud is unsupported and instant notifications are unavailable.',
|
||||
'This community release of Nextcloud is unsupported and push notifications are limited.',
|
||||
]
|
||||
);
|
||||
$this->initialStateService->expects($this->at(1))
|
||||
|
|
|
|||
|
|
@ -248,10 +248,10 @@ class ManagerTest extends TestCase {
|
|||
|
||||
public function dataIsFairUseOfFreePushService(): array {
|
||||
return [
|
||||
[true, 4999, true],
|
||||
[true, 5000, true],
|
||||
[false, 4999, true],
|
||||
[false, 5000, false],
|
||||
[true, 499, true],
|
||||
[true, 500, true],
|
||||
[false, 499, true],
|
||||
[false, 500, false],
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue