From 0f896033fa33716336ccf7069e333f962116110b Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Sat, 20 Aug 2022 22:55:28 +0200 Subject: [PATCH] Github Action: fix failing pipeline due to rate limit on githubassets.com Quick and easy solution: try to reach GitLab instead. --- tests/ThumbnailerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ThumbnailerTest.php b/tests/ThumbnailerTest.php index f9c7abd4..2ea5568e 100644 --- a/tests/ThumbnailerTest.php +++ b/tests/ThumbnailerTest.php @@ -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));