-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -386,7 +386,7 @@ public function it_can_handle_html_entities() | |
*/ | ||
public function it_can_generate_gravatar() | ||
{ | ||
$expected = 'https://www.gravatar.com/avatar/0c5cbf5a8762d91d930795a6107b2ce5814a6ab26e60c7ec6b75bc81c7dfe3ee?s=88'; | ||
$expected = 'https://www.gravatar.com/avatar/db6f5ab11fb203026beb0e298930cc5a07080022e7cbb4c597b97321585df61b?s=88'; | ||
|
||
$avatar = new \Laravolt\Avatar\Avatar(); | ||
$url = $avatar | ||
|
@@ -402,7 +402,7 @@ public function it_can_generate_gravatar() | |
*/ | ||
public function it_can_generate_gravatar_with_size() | ||
{ | ||
$expected = 'https://www.gravatar.com/avatar/0c5cbf5a8762d91d930795a6107b2ce5814a6ab26e60c7ec6b75bc81c7dfe3ee?s=100'; | ||
$expected = 'https://www.gravatar.com/avatar/db6f5ab11fb203026beb0e298930cc5a07080022e7cbb4c597b97321585df61b?s=100'; | ||
|
||
$avatar = new \Laravolt\Avatar\Avatar(); | ||
$url = $avatar->create('[email protected]') | ||
|
@@ -417,7 +417,7 @@ public function it_can_generate_gravatar_with_size() | |
*/ | ||
public function it_can_generate_gravatar_with_default() | ||
{ | ||
$expected = 'https://www.gravatar.com/avatar/0c5cbf5a8762d91d930795a6107b2ce5814a6ab26e60c7ec6b75bc81c7dfe3ee?d=identicon&s=100'; | ||
$expected = 'https://www.gravatar.com/avatar/db6f5ab11fb203026beb0e298930cc5a07080022e7cbb4c597b97321585df61b?d=identicon&s=100'; | ||
|
||
$avatar = new \Laravolt\Avatar\Avatar(); | ||
$url = $avatar->create('[email protected]') | ||
|
@@ -432,7 +432,7 @@ public function it_can_generate_gravatar_with_default() | |
*/ | ||
public function it_can_generate_gravatar_with_default_and_rating() | ||
{ | ||
$expected = 'https://www.gravatar.com/avatar/0c5cbf5a8762d91d930795a6107b2ce5814a6ab26e60c7ec6b75bc81c7dfe3ee?d=identicon&r=pg&s=100'; | ||
$expected = 'https://www.gravatar.com/avatar/db6f5ab11fb203026beb0e298930cc5a07080022e7cbb4c597b97321585df61b?d=identicon&r=pg&s=100'; | ||
|
||
$avatar = new \Laravolt\Avatar\Avatar(); | ||
$url = $avatar->create('[email protected]') | ||
|
@@ -447,7 +447,7 @@ public function it_can_generate_gravatar_with_default_and_rating() | |
*/ | ||
public function it_can_generate_gravatar_with_size_overriden() | ||
{ | ||
$expected = 'https://www.gravatar.com/avatar/0c5cbf5a8762d91d930795a6107b2ce5814a6ab26e60c7ec6b75bc81c7dfe3ee?s=300'; | ||
$expected = 'https://www.gravatar.com/avatar/db6f5ab11fb203026beb0e298930cc5a07080022e7cbb4c597b97321585df61b?s=300'; | ||
|
||
$avatar = new \Laravolt\Avatar\Avatar(); | ||
$url = $avatar->create('[email protected]') | ||
|