We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9568dc9 commit 18d6a84Copy full SHA for 18d6a84
1 file changed
tests/system/Validation/ValidationTest.php
@@ -1593,7 +1593,9 @@ public function testPlaceholderReplacementTestFails(): void
1593
{
1594
// to test if placeholderReplacementResultDetermination() works we provoke and expect an exception
1595
$this->expectException(ExpectationFailedException::class);
1596
- $this->expectExceptionMessage('Failed asserting that \'filter[{id}]\' [ASCII](length: 12) does not contain "{id}" [ASCII](length: 4).');
+ $this->expectExceptionMessage(
1597
+ 'Failed asserting that \'filter[{id}]\' [ASCII](length: 12) does not contain "{id}" [ASCII](length: 4).'
1598
+ );
1599
1600
$this->validation->setRule('foo', 'foo-label', 'required|filter[{id}]');
1601
0 commit comments