diff --git a/ext/README.md b/ext/README.md index 1e83f5ec12..242aed48e9 100644 --- a/ext/README.md +++ b/ext/README.md @@ -115,7 +115,7 @@ It is also possible to skip recording of steps for specified tests by using the public function testLogin(AcceptanceTester $I) { $I->login(); - $I->amOnUrl('http://codeception.com'); + $I->amOnUrl('https://codeception.com'); } ``` diff --git a/ext/Recorder.php b/ext/Recorder.php index 9dd1c50a5b..54eda50af0 100644 --- a/ext/Recorder.php +++ b/ext/Recorder.php @@ -63,7 +63,7 @@ * public function testLogin(AcceptanceTester $I) * { * $I->login(); - * $I->amOnUrl('http://codeception.com'); + * $I->amOnUrl('https://codeception.com'); * } * ``` *