Skip to content

Commit

Permalink
パスワードに数字が含まれない場合があるのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Jul 25, 2019
1 parent 0a8ea85 commit 4607214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ctests/acceptance/EntryCept.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$I->resetEmails();

$new_email = microtime(true).'.'.$faker->safeEmail;
$password = $faker->password(8, 100);
$password = $faker->password(8, 100).'1';

$I->wantTo('会員登録が正常にできるかを確認する');
$I->amOnPage('/entry/kiyaku.php');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testPASSWORD_CHAR_CHECKWithNull()
public function testPASSWORD_CHAR_CHECKWithFaker()
{
$this->arrForm = [
self::FORM_NAME => $this->faker->password(8, 100)
self::FORM_NAME => $this->faker->password(8, 100).'1'
];
$this->expected = '';
$this->scenario();
Expand Down

0 comments on commit 4607214

Please sign in to comment.