From 70c9934a118638a96f5efad290f15a568a11d583 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Sat, 19 Feb 2022 20:21:21 +0200 Subject: [PATCH] Fix broken test --- tests/unit/Codeception/Module/TestsForBrowsers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/Codeception/Module/TestsForBrowsers.php b/tests/unit/Codeception/Module/TestsForBrowsers.php index eb42cf8..3edac74 100644 --- a/tests/unit/Codeception/Module/TestsForBrowsers.php +++ b/tests/unit/Codeception/Module/TestsForBrowsers.php @@ -19,11 +19,11 @@ public function testAmOnSubdomain() { $this->module->_reconfigure(['url' => 'https://google.com']); $this->module->amOnSubdomain('user'); - $this->assertEquals('http://user.google.com', $this->module->_getUrl()); + $this->assertEquals('https://user.google.com', $this->module->_getUrl()); $this->module->_reconfigure(['url' => 'https://www.google.com']); $this->module->amOnSubdomain('user'); - $this->assertEquals('http://user.google.com', $this->module->_getUrl()); + $this->assertEquals('https://user.google.com', $this->module->_getUrl()); } public function testOpenAbsoluteUrls()