Github Action: fix failing pipeline due to rate limit on githubassets.com

Quick and easy solution: try to reach GitLab instead.
This commit is contained in:
ArthurHoaro 2022-08-20 22:55:28 +02:00
parent 7c6df1c80f
commit 0f896033fa

View file

@ -52,7 +52,7 @@ class ThumbnailerTest extends TestCase
*/
public function testThumbnailAllValid()
{
$thumb = $this->thumbnailer->get('https://github.com/shaarli/Shaarli/');
$thumb = $this->thumbnailer->get('https://gitlab.com/shaarli/Shaarli');
$this->assertNotFalse($thumb);
$image = imagecreatefromstring(file_get_contents($thumb));
$this->assertEquals(self::WIDTH, imagesx($image));