Skip to content

Commit 0f79712

Browse files
committed
style: break long line
1 parent 84a4f31 commit 0f79712

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/Unit/CompositionValidatorTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ public function testCheckFalse(): void
4545
$result = $this->validator->check($password);
4646

4747
$this->assertFalse($result->isOK());
48-
$this->assertSame(lang('Auth.errorPasswordLength', [$this->config->minimumPasswordLength]), $result->reason());
48+
$this->assertSame(
49+
lang('Auth.errorPasswordLength', [$this->config->minimumPasswordLength]),
50+
$result->reason()
51+
);
4952
}
5053

5154
public function testCheckTrue(): void

0 commit comments

Comments
 (0)