|
9 | 9 | use OpenTok\MediaMode; |
10 | 10 | use ArgumentCountError; |
11 | 11 | use DomainException; |
12 | | -use Exception; |
13 | | -use GuzzleHttp\Exception\GuzzleException; |
14 | 12 | use OpenTok\OutputMode; |
15 | 13 | use OpenTok\ArchiveMode; |
16 | 14 | use OpenTok\StreamMode; |
|
19 | 17 | use GuzzleHttp\HandlerStack; |
20 | 18 | use PHPUnit\Framework\TestCase; |
21 | 19 | use GuzzleHttp\Handler\MockHandler; |
22 | | -use InvalidArgumentException as GlobalInvalidArgumentException; |
23 | | -use OpenTok\Exception\AuthenticationException; |
24 | | -use OpenTok\Exception\DomainException as ExceptionDomainException; |
25 | 20 | use OpenTok\Exception\InvalidArgumentException; |
26 | | -use RuntimeException; |
27 | | -use OpenTok\Exception\UnexpectedValueException; |
28 | 21 |
|
29 | 22 | define('OPENTOK_DEBUG', true); |
30 | 23 |
|
@@ -2237,7 +2230,6 @@ public function testSipCallVideo(): void |
2237 | 2230 | $this->assertNotNull($sipCall->id); |
2238 | 2231 | $this->assertNotNull($sipCall->connectionId); |
2239 | 2232 | $this->assertNotNull($sipCall->streamId); |
2240 | | - $this->assertEquals(false, $sipCall->observeForceMute); |
2241 | 2233 |
|
2242 | 2234 | $this->assertCount(1, $this->historyContainer); |
2243 | 2235 | $request = $this->historyContainer[0]['request']; |
@@ -2271,7 +2263,6 @@ public function testSipCallVideoWithObserveForceMute(): void |
2271 | 2263 | $this->assertNotNull($sipCall->id); |
2272 | 2264 | $this->assertNotNull($sipCall->connectionId); |
2273 | 2265 | $this->assertNotNull($sipCall->streamId); |
2274 | | - $this->assertEquals(true, $sipCall->observeForceMute); |
2275 | 2266 |
|
2276 | 2267 | $this->assertCount(1, $this->historyContainer); |
2277 | 2268 | $request = $this->historyContainer[0]['request']; |
|
0 commit comments