diff --git a/tests/Support/SupportStrTest.php b/tests/Support/SupportStrTest.php index 9c8ad8e38249..60856321e810 100755 --- a/tests/Support/SupportStrTest.php +++ b/tests/Support/SupportStrTest.php @@ -1513,7 +1513,7 @@ public function testPasswordCreation() $this->assertTrue( Str::of(Str::password(letters: false, upperLetters: true))->contains(['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']) ); - + $this->assertTrue( Str::of(Str::password(letters: false, lowerLetters: true))->contains(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']) );