Skip to content

Commit eecaaee

Browse files
committed
Fix formatting inconsistencies in ExpectedErrors test definitions
* Add missing trailing commas to array elements.
1 parent 43da702 commit eecaaee

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/Functional/Validator/ExpectedErrors.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,23 +88,23 @@ final class ExpectedErrors
8888
'addresses[0].country.officialLanguage' => [
8989
0 => [
9090
'message' => 'The value you selected is not a valid choice.',
91-
'code' => '8e179f1b-97aa-4560-a02f-2a8b42e49df7'
91+
'code' => '8e179f1b-97aa-4560-a02f-2a8b42e49df7',
9292
],
9393
],
9494
'addresses[1].country.name' => [
9595
0 => [
9696
'message' => 'This value should not be blank.',
97-
'code' => 'c1051bb4-d103-4f74-8988-acbcafc7fdc3'
97+
'code' => 'c1051bb4-d103-4f74-8988-acbcafc7fdc3',
9898
],
9999
],
100100
'addresses[1].period.endDate' => [
101101
0 => [
102102
'message' => 'This value should be greater than "2000-01-01".',
103-
'code' => '778b7ae0-84d3-481a-9dec-35fdb64b1d78'
104-
]
105-
]
106-
]
107-
]
103+
'code' => '778b7ae0-84d3-481a-9dec-35fdb64b1d78',
104+
],
105+
],
106+
],
107+
],
108108
];
109109

110110
public static function simpleValidation(string $fieldName): array

0 commit comments

Comments
 (0)