Bläddra i källkod

Fixed codestyle

Andrey Helldar 5 år sedan
förälder
incheckning
266bac6727
1 ändrade filer med 13 tillägg och 13 borttagningar
  1. 13 13
      tests/Unit/GeneratorTestCase.php

+ 13 - 13
tests/Unit/GeneratorTestCase.php

@@ -472,21 +472,21 @@ abstract class GeneratorTestCase extends TestCase
         $content = json_decode($response['content'], true);
         $this->assertIsArray($content);
         $this->assertArraySubset([
-                'data' => [
-                    [
-                        'id' => 4,
-                        'name' => 'Tested Again',
-                        'email' => 'a@b.com',
-                    ],
-                    [
-                        'id' => 4,
-                        'name' => 'Tested Again',
-                        'email' => 'a@b.com',
-                    ],
+            'data' => [
+                [
+                    'id' => 4,
+                    'name' => 'Tested Again',
+                    'email' => 'a@b.com',
                 ],
-                'links' => [
-                    'self' => 'link-value',
+                [
+                    'id' => 4,
+                    'name' => 'Tested Again',
+                    'email' => 'a@b.com',
                 ],
+            ],
+            'links' => [
+                'self' => 'link-value',
+            ],
         ], $content);
     }