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
path: root/tests
diff options
context:
space:
mode:
authorsahalsaad <caalshift@gmail.com>2018-12-18 03:18:26 +0300
committersahalsaad <caalshift@gmail.com>2018-12-18 03:18:26 +0300
commit3f2c4e9e3296f862d86c267b84f390d9d5a775a3 (patch)
tree6129675651e8f81510f602952280162590854f56 /tests
parent7bc0d0761aff13034c920054098630602ee4b323 (diff)
Fix failing AvatarServiceIntegrationTest::testGithubFavicon.
Diffstat (limited to 'tests')
-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);
}