Skip to content

Commit 05c5c57

Browse files
committed
Fix cs and docs
1 parent b67a2da commit 05c5c57

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/unit/BigBlueButtonTest.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public function testCreateMeetingUrl(): void
228228
}
229229

230230
/**
231-
* Test create meeting URL.
231+
* Test create meeting without modules.
232232
*/
233233
public function testCreate(): void
234234
{
@@ -252,7 +252,7 @@ public function testCreate(): void
252252
->with(self::callback(function ($request) {
253253
$payload = $request->getPayload();
254254

255-
return $payload == '';
255+
return $payload === '';
256256
}))
257257
->willReturn(new TransportResponse($xml, null));
258258

@@ -263,6 +263,9 @@ public function testCreate(): void
263263
$this->assertFalse($response->isIdNotUnique());
264264
}
265265

266+
/**
267+
* Test create meeting with modules (presentations and clientSettingsOverride).
268+
*/
266269
public function testCreateWithPresentation(): void
267270
{
268271
$createMeetingParams = $this->generateCreateParams();

0 commit comments

Comments
 (0)