Skip to content

Commit 512f253

Browse files
committed
fix: cs-fix
1 parent 964fe71 commit 512f253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/Validation/ValidationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ public function testRunWithCustomErrorsAndAsteriskField(): void
472472
'foo' => [
473473
['bar' => null],
474474
['bar' => null],
475-
]
475+
],
476476
];
477477
$this->validation->setRules(
478478
['foo.*.bar' => ['label' => 'foo bar', 'rules' => 'required']],
@@ -481,7 +481,7 @@ public function testRunWithCustomErrorsAndAsteriskField(): void
481481
$this->validation->run($data);
482482
$this->assertSame([
483483
'foo.0.bar' => 'Required',
484-
'foo.1.bar' => 'Required'
484+
'foo.1.bar' => 'Required',
485485
], $this->validation->getErrors());
486486
}
487487

0 commit comments

Comments
 (0)