From bd3e8cf2bdc75943b481a3f8784f6de910bd8029 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Sat, 23 Dec 2017 00:57:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BE=D1=82=D1=81=D1=83=D1=82=D1=81=D1=82?= =?UTF-8?q?=D0=B2=D0=B8=D0=B5=20=D0=BE=D0=B1=D1=8F=D0=B7=D0=B0=D1=82=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BF=D0=BE=D0=BB=D1=8F?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D1=85=20?= =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=D1=82=D1=83=D1=80=20(=D0=B8=20=D0=BF?= =?UTF-8?q?=D0=BE=D1=87=D0=B5=D0=BC=D1=83=20=D0=BE=D0=BD=D0=BE=20=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D1=8C=D1=88=D0=B5=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BB=D0=BE=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/codeception/common/fixtures/data/accounts.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/codeception/common/fixtures/data/accounts.php b/tests/codeception/common/fixtures/data/accounts.php index fe15830..382db97 100644 --- a/tests/codeception/common/fixtures/data/accounts.php +++ b/tests/codeception/common/fixtures/data/accounts.php @@ -54,6 +54,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1457890086, 'updated_at' => 1457890086, + 'password_changed_at' => 1457890086, ], 'account-with-fresh-forgot-password-message' => [ 'id' => 5, @@ -67,6 +68,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1462891432, 'updated_at' => 1462891432, + 'password_changed_at' => 1462891432, ], 'account-with-expired-forgot-password-message' => [ 'id' => 6, @@ -80,6 +82,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1462891612, 'updated_at' => 1462891612, + 'password_changed_at' => 1462891612, ], 'account-with-change-email-init-state' => [ 'id' => 7, @@ -93,6 +96,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1463427287, 'updated_at' => 1463427287, + 'password_changed_at' => 1463427287, ], 'account-with-change-email-finish-state' => [ 'id' => 8, @@ -106,6 +110,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1463349615, 'updated_at' => 1463349615, + 'password_changed_at' => 1463349615, ], 'account-with-old-rules-version' => [ 'id' => 9, @@ -119,6 +124,7 @@ return [ 'rules_agreement_version' => null, 'created_at' => 1470499952, 'updated_at' => 1470499952, + 'password_changed_at' => 1470499952, ], 'banned-account' => [ 'id' => 10, @@ -132,6 +138,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1472682343, 'updated_at' => 1472682343, + 'password_changed_at' => 1472682343, ], 'account-with-usernames-history' => [ 'id' => 11, @@ -145,6 +152,7 @@ return [ 'rules_agreement_version' => \common\LATEST_RULES_VERSION, 'created_at' => 1474404139, 'updated_at' => 1474404149, + 'password_changed_at' => 1474404149, ], 'account-with-otp-secret' => [ 'id' => 12, @@ -160,6 +168,7 @@ return [ 'is_otp_enabled' => false, 'created_at' => 1485124615, 'updated_at' => 1485124615, + 'password_changed_at' => 1485124615, ], 'account-with-enabled-otp' => [ 'id' => 13, @@ -175,5 +184,6 @@ return [ 'is_otp_enabled' => true, 'created_at' => 1485124685, 'updated_at' => 1485124685, + 'password_changed_at' => 1485124685, ], ];