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:
parent
7c6df1c80f
commit
0f896033fa
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ protected function tearDown(): void
|
||||||
*/
|
*/
|
||||||
public function testThumbnailAllValid()
|
public function testThumbnailAllValid()
|
||||||
{
|
{
|
||||||
$thumb = $this->thumbnailer->get('https://github.com/shaarli/Shaarli/');
|
$thumb = $this->thumbnailer->get('https://gitlab.com/shaarli/Shaarli');
|
||||||
$this->assertNotFalse($thumb);
|
$this->assertNotFalse($thumb);
|
||||||
$image = imagecreatefromstring(file_get_contents($thumb));
|
$image = imagecreatefromstring(file_get_contents($thumb));
|
||||||
$this->assertEquals(self::WIDTH, imagesx($image));
|
$this->assertEquals(self::WIDTH, imagesx($image));
|
||||||
|
|
Loading…
Reference in a new issue