Skip to content

Commit 241253f

Browse files
committed
Improve BigBlueButtonTest::testCreateEndMeetingUrl
1 parent ea35cb5 commit 241253f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/BigBlueButtonTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@ public function testCreateEndMeetingUrl()
242242
$params = $this->generateEndMeetingParams();
243243
$url = $this->bbb->getEndMeetingURL($this->getEndMeetingMock($params));
244244
foreach ($params as $key => $value) {
245+
if (is_bool($value)) {
246+
$value = $value ? 'true' : 'false';
247+
}
245248
$this->assertContains('=' . urlencode($value), $url);
246249
}
247250
}

0 commit comments

Comments
 (0)