diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2024-01-31 17:28:25 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2024-01-31 21:13:32 -0100 |
commit | 1956be411855874d4fdefb00a66ad8d7799fe915 (patch) | |
tree | 84267f27a6ae693ba4c27af34c487b6fb085fd61 /tests/lib/AppFramework | |
parent | e1d7328bb2962b3789f6a7fa5c0977d7551fefcf (diff) | |
download | nextcloud-server-1956be411855874d4fdefb00a66ad8d7799fe915.tar.gz nextcloud-server-1956be411855874d4fdefb00a66ad8d7799fe915.zip |
fix lint
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'tests/lib/AppFramework')
-rw-r--r-- | tests/lib/AppFramework/Services/AppConfigTest.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/tests/lib/AppFramework/Services/AppConfigTest.php b/tests/lib/AppFramework/Services/AppConfigTest.php index 5fc0da6a5f3..566b47e021e 100644 --- a/tests/lib/AppFramework/Services/AppConfigTest.php +++ b/tests/lib/AppFramework/Services/AppConfigTest.php @@ -104,24 +104,24 @@ class AppConfigTest extends TestCase { // TODO: fix this in core: getAllAppValues() should returns values based on their types instead of all string -// public function testGetAllAppValues(): void { -// $this->assertSame( -// [ -// 'key1' => 'value1', -// 'key2' => 'value0', -// 'key6' => 1, -// 'key7' => [ -// 'test1' => 1, -// 'test2' => 2 -// ], -// 'test8' => 1, -// 'key3' => 'value0', -// 'key4' => 3, -// 'key5' => 3.14 -// ], -// $this->appConfig->getAllAppValues() -// ); -// } + // public function testGetAllAppValues(): void { + // $this->assertSame( + // [ + // 'key1' => 'value1', + // 'key2' => 'value0', + // 'key6' => 1, + // 'key7' => [ + // 'test1' => 1, + // 'test2' => 2 + // ], + // 'test8' => 1, + // 'key3' => 'value0', + // 'key4' => 3, + // 'key5' => 3.14 + // ], + // $this->appConfig->getAllAppValues() + // ); + // } public function testSetAppValue(): void { |