Passed
Push — complex_graph ( ebf314...baae24 )
by Donald
01:31
created
test/Chekote/NounStore/Key/SplitPossessionsTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
     public function nouns()
39 39
     {
40 40
         return [
41
-            [self::KEY,                                 [self::KEY                             ]],
42
-            [self::KEY . "'s Car",                      [self::KEY,          'Car'             ]],
43
-            ['8th ' . self::KEY . "'s Car",             ['8th ' . self::KEY, 'Car'             ]],
44
-            [self::KEY . "'s 2nd Car",                  [self::KEY,          '2nd Car'         ]],
45
-            ['7th ' . self::KEY . "'s 4th Car",         ['7th ' . self::KEY, '4th Car'         ]],
41
+            [self::KEY, [self::KEY]],
42
+            [self::KEY . "'s Car", [self::KEY, 'Car']],
43
+            ['8th ' . self::KEY . "'s Car", ['8th ' . self::KEY, 'Car']],
44
+            [self::KEY . "'s 2nd Car", [self::KEY, '2nd Car']],
45
+            ['7th ' . self::KEY . "'s 4th Car", ['7th ' . self::KEY, '4th Car']],
46 46
             ['7th ' . self::KEY . "'s 4th Car's Wheel", ['7th ' . self::KEY, '4th Car', 'Wheel']],
47 47
         ];
48 48
     }
Please login to merge, or discard this patch.