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.
2 parents 3f4705e + 20152b7 commit 4df5c01Copy full SHA for 4df5c01
tests/BigBlueButtonTest.php
@@ -309,7 +309,9 @@ public function testInsertDocumentFile(): void
309
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
310
311
// ASSERT
312
- if (!array_search(Feature::PRESENTATION, $createMeetingParameters->getDisabledFeatures()) > 0) {
+ if (!in_array(Feature::PRESENTATION, $createMeetingParameters->getDisabledFeatures())
313
+ || in_array(Feature::PRESENTATION, $createMeetingParameters->getDisabledFeaturesExclude())
314
+ ) {
315
$this->assertTrue($insertDocumentResponse->success());
316
} else {
317
$this->assertTrue($insertDocumentResponse->failed());
0 commit comments