From 460721490947f1902c87c100c0ca319a5e1413e6 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Thu, 25 Jul 2019 14:26:14 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC=E3=83=89?= =?UTF-8?q?=E3=81=AB=E6=95=B0=E5=AD=97=E3=81=8C=E5=90=AB=E3=81=BE=E3=82=8C?= =?UTF-8?q?=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=8C=E3=81=82=E3=82=8B?= =?UTF-8?q?=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ctests/acceptance/EntryCept.php | 2 +- .../SC_CheckError/SC_CheckError_PASSWORD_CHAR_CHECKTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctests/acceptance/EntryCept.php b/ctests/acceptance/EntryCept.php index 065bb6ed9d..a6fc561bd9 100644 --- a/ctests/acceptance/EntryCept.php +++ b/ctests/acceptance/EntryCept.php @@ -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'); diff --git a/tests/class/SC_CheckError/SC_CheckError_PASSWORD_CHAR_CHECKTest.php b/tests/class/SC_CheckError/SC_CheckError_PASSWORD_CHAR_CHECKTest.php index b8515aadb6..95eb474ed1 100644 --- a/tests/class/SC_CheckError/SC_CheckError_PASSWORD_CHAR_CHECKTest.php +++ b/tests/class/SC_CheckError/SC_CheckError_PASSWORD_CHAR_CHECKTest.php @@ -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();