Skip to content

Commit

Permalink
Replace the non-working image placeholder service by a newest one.
Browse files Browse the repository at this point in the history
  • Loading branch information
GhaziTriki committed Apr 10, 2019
1 parent b741c45 commit d21b4cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/BigBlueButtonTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function testCreateMeeting()
public function testCreateMeetingWithDocumentUrl()
{
$params = $this->getCreateMock($this->generateCreateParams());
$params->addPresentation('https://placeholdit.imgix.net/~text?txtsize=96&bg=30406B&txtclr=ffffff&txt=BigBlueButton&w=800&h=600');
$params->addPresentation('https://picsum.photos/3840/2160/?random');

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

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

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

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

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

0 comments on commit d21b4cb

Please sign in to comment.