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 73fdbd2 commit 20152b7Copy full SHA for 20152b7
tests/BigBlueButtonTest.php
@@ -309,7 +309,9 @@ public function testInsertDocumentFile(): void
309
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
310
311
// ASSERT
312
- if (!in_array(Feature::PRESENTATION, $createMeetingParameters->getDisabledFeatures()) {
+ 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