diff --git a/features/bootstrap/ProfileReviewContext.php b/features/bootstrap/ProfileReviewContext.php index 917be783..5312b09e 100644 --- a/features/bootstrap/ProfileReviewContext.php +++ b/features/bootstrap/ProfileReviewContext.php @@ -57,7 +57,7 @@ protected function submitFormByClickingButtonNamed($buttonName) */ public function iProvideCredentialsThatDoNotNeedReview() { - // See `development/idp-local/config/authsources.php` for options. + // Credentials defined in `development/idp-local/config/authsources.php` $this->username = 'no_review'; $this->password = 'e'; } @@ -67,7 +67,7 @@ public function iProvideCredentialsThatDoNotNeedReview() */ public function iProvideCredentialsThatAreDueForAReminder($category, $nagType) { - // See `development/idp-local/config/authsources.php` for options. + // Credentials defined in `development/idp-local/config/authsources.php` $this->username = $category . '_' . $nagType; switch ($this->username) { case 'mfa_add': @@ -85,7 +85,7 @@ public function iProvideCredentialsThatAreDueForAReminder($category, $nagType) */ public function iProvideCredentialsThatAreDueForAProfileReview() { - // See `development/idp-local/config/authsources.php` for options. + // Credentials defined in `development/idp-local/config/authsources.php` $this->username = 'profile_review'; $this->password = 'h'; }