diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-12-09 17:09:55 +0100 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2025-01-07 10:34:30 +0100 |
commit | 99e0867f0aaa81ebeae43deaa8ea389419dd9aaa (patch) | |
tree | fb5d2b70d0fae896632ba1701143c8bb60ec0215 /tests/lib/Config | |
parent | e7be008dc1ee9ef504448d61606b03897b33b660 (diff) | |
download | nextcloud-server-99e0867f0aaa81ebeae43deaa8ea389419dd9aaa.tar.gz nextcloud-server-99e0867f0aaa81ebeae43deaa8ea389419dd9aaa.zip |
chore: Adapt tests to added constructor parameters
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/Config')
-rw-r--r-- | tests/lib/Config/UserConfigTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/Config/UserConfigTest.php b/tests/lib/Config/UserConfigTest.php index e727116d9a8..0f2aed4a288 100644 --- a/tests/lib/Config/UserConfigTest.php +++ b/tests/lib/Config/UserConfigTest.php @@ -746,9 +746,9 @@ class UserConfigTest extends TestCase { public function testSearchValuesByUsers( string $app, string $key, - ?ValueType $typedAs = null, - ?array $userIds = null, - array $result = [], + ?ValueType $typedAs, + ?array $userIds, + array $result, ): void { $userConfig = $this->generateUserConfig(); $this->assertEqualsCanonicalizing( |