Skip to content

Commit

Permalink
HttpS for favicon tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ngfw authored Sep 5, 2016
1 parent f811648 commit 0322527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RecipeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function test_getFavicon()
{
$favIcon = Recipe::getFavicon('http://youtube.com/');
$this->assertEquals(
'<img src="http://www.google.com/s2/favicons?domain=youtube.com/" />',
'<img src="https://www.google.com/s2/favicons?domain=youtube.com/" />',
$favIcon
);
}
Expand All @@ -28,7 +28,7 @@ public function test_getFavicon_with_attributes()
'class' => 'favImg',
]);
$this->assertEquals(
'<img src="http://www.google.com/s2/favicons?domain=youtube.com/" class="favImg" />',
'<img src="https://www.google.com/s2/favicons?domain=youtube.com/" class="favImg" />',
$favIcon
);
}
Expand Down

0 comments on commit 0322527

Please sign in to comment.