]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Config/Cache/ConfigCacheTest.php
wrong indent
[friendica.git] / tests / src / Core / Config / Cache / ConfigCacheTest.php
index d8d0237f388628913fb48e53ecd4c9d44c30c0f8..e6ac8255e9f7b3b454aced052381a62e71a44c04 100644 (file)
@@ -246,33 +246,33 @@ class ConfigCacheTest extends MockedTest
                $this->assertEmpty($configCache->getAll());
        }
 
-    /**
-     * Test the keyDiff() method with result
-     * @dataProvider dataTests
-     */
+       /**
+        * Test the keyDiff() method with result
+        * @dataProvider dataTests
+        */
        public function testKeyDiffWithResult($data)
-    {
-        $configCache = new ConfigCache($data);
-
-        $diffConfig = [
-            'fakeCat' => [
-                'fakeKey' => 'value',
-            ]
-        ];
-
-        $this->assertEquals($diffConfig, $configCache->keyDiff($diffConfig));
-    }
-
-    /**
-     * Test the keyDiff() method without result
-     * @dataProvider dataTests
-     */
-    public function testKeyDiffWithoutResult($data)
-    {
-        $configCache = new ConfigCache($data);
-
-        $diffConfig = $configCache->getAll();
-
-        $this->assertEmpty($configCache->keyDiff($diffConfig));
-    }
+       {
+               $configCache = new ConfigCache($data);
+
+               $diffConfig = [
+                       'fakeCat' => [
+                               'fakeKey' => 'value',
+                       ]
+               ];
+
+               $this->assertEquals($diffConfig, $configCache->keyDiff($diffConfig));
+       }
+
+       /**
+        * Test the keyDiff() method without result
+        * @dataProvider dataTests
+        */
+       public function testKeyDiffWithoutResult($data)
+       {
+               $configCache = new ConfigCache($data);
+
+               $diffConfig = $configCache->getAll();
+
+               $this->assertEmpty($configCache->keyDiff($diffConfig));
+       }
 }