Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/Integration/Service/AvatarServiceIntegrationTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Integration/Service/AvatarServiceIntegrationTest.php b/tests/Integration/Service/AvatarServiceIntegrationTest.php
index e776b37a9..13b6048d4 100644
--- a/tests/Integration/Service/AvatarServiceIntegrationTest.php
+++ b/tests/Integration/Service/AvatarServiceIntegrationTest.php
@@ -61,7 +61,7 @@ class AvatarServiceIntegrationTest extends TestCase {
public function testGithubFavicon() {
$avatar = $this->service->getAvatar('no-reply@github.com', 'jane');
$this->assertNotNull($avatar);
- $this->assertEquals('https://assets-cdn.github.com/favicon.ico', $avatar->getUrl());
+ $this->assertEquals('https://github.githubassets.com/favicon.ico', $avatar->getUrl());
$image = $this->service->getAvatarImage('no-reply@github.com', 'jane');
$this->assertNotNull($image);
}