From 1956be411855874d4fdefb00a66ad8d7799fe915 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 31 Jan 2024 17:28:25 -0100 Subject: [PATCH] fix lint Signed-off-by: Maxence Lange --- .../AppFramework/Services/AppConfigTest.php | 36 +++++++++---------- 1 file 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 {