Skip to content

Commit 70c9934

Browse files
authored
Fix broken test
1 parent 4429d7e commit 70c9934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/Codeception/Module/TestsForBrowsers.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ public function testAmOnSubdomain()
1919
{
2020
$this->module->_reconfigure(['url' => 'https://google.com']);
2121
$this->module->amOnSubdomain('user');
22-
$this->assertEquals('http://user.google.com', $this->module->_getUrl());
22+
$this->assertEquals('https://user.google.com', $this->module->_getUrl());
2323

2424
$this->module->_reconfigure(['url' => 'https://www.google.com']);
2525
$this->module->amOnSubdomain('user');
26-
$this->assertEquals('http://user.google.com', $this->module->_getUrl());
26+
$this->assertEquals('https://user.google.com', $this->module->_getUrl());
2727
}
2828

2929
public function testOpenAbsoluteUrls()

0 commit comments

Comments
 (0)