We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea35cb5 commit 241253fCopy full SHA for 241253f
tests/BigBlueButtonTest.php
@@ -242,6 +242,9 @@ public function testCreateEndMeetingUrl()
242
$params = $this->generateEndMeetingParams();
243
$url = $this->bbb->getEndMeetingURL($this->getEndMeetingMock($params));
244
foreach ($params as $key => $value) {
245
+ if (is_bool($value)) {
246
+ $value = $value ? 'true' : 'false';
247
+ }
248
$this->assertContains('=' . urlencode($value), $url);
249
}
250
0 commit comments