Skip to content

Commit d21b4cb

Browse files
committed
Replace the non-working image placeholder service by a newest one.
1 parent b741c45 commit d21b4cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/BigBlueButtonTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function testCreateMeeting()
9999
public function testCreateMeetingWithDocumentUrl()
100100
{
101101
$params = $this->getCreateMock($this->generateCreateParams());
102-
$params->addPresentation('https://placeholdit.imgix.net/~text?txtsize=96&bg=30406B&txtclr=ffffff&txt=BigBlueButton&w=800&h=600');
102+
$params->addPresentation('https://picsum.photos/3840/2160/?random');
103103

104104
$result = $this->bbb->createMeeting($params);
105105

@@ -113,7 +113,7 @@ public function testCreateMeetingWithDocumentUrl()
113113
public function testCreateMeetingWithDocumentUrlAndFileName()
114114
{
115115
$params = $this->getCreateMock($this->generateCreateParams());
116-
$params->addPresentation('https://placeholdit.imgix.net/~text?txtsize=100&bg=AB5080&txtclr=ffffff&txt=BigBlueButton&w=1920&h=1080', null, 'placeholder.png');
116+
$params->addPresentation('https://picsum.photos/3840/2160/?random', null, 'placeholder.png');
117117

118118
$result = $this->bbb->createMeeting($params);
119119

@@ -141,7 +141,7 @@ public function testCreateMeetingWithDocumentEmbedded()
141141
public function testCreateMeetingWithMultiDocument()
142142
{
143143
$params = $this->getCreateMock($this->generateCreateParams());
144-
$params->addPresentation('https://placeholdit.imgix.net/~text?txtsize=96&bg=DE3040&txtclr=ffffff&txt=BigBlueButton&w=1600&h=1200', null, 'presentation.png');
144+
$params->addPresentation('https://picsum.photos/3840/2160/?random', null, 'presentation.png');
145145
$params->addPresentation('logo.png', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'fixtures' . DIRECTORY_SEPARATOR . 'bbb_logo.png'));
146146

147147
$result = $this->bbb->createMeeting($params);

0 commit comments

Comments
 (0)