We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796e6ba commit 6e46353Copy full SHA for 6e46353
1 file changed
tests/BigBlueButtonTest.php
@@ -279,7 +279,11 @@ public function testInsertDocumentUrl(): void
279
$insertDocumentResponse = $this->bbb->insertDocument($insertDocumentParameters);
280
281
// ASSERT
282
- $this->assertTrue($insertDocumentResponse->success());
+ if (!array_search(Feature::PRESENTATION, $createMeetingParameters->getDisabledFeatures()) > 0) {
283
+ $this->assertTrue($insertDocumentResponse->success());
284
+ } else {
285
+ $this->assertTrue($insertDocumentResponse->failed());
286
+ }
287
}
288
289
/**
0 commit comments