Skip to content

Commit dd6314e

Browse files
Merge branch '4.3' into 4.4
* 4.3: Fix assertInternalType deprecation in phpunit 9 Micro-typo fix
2 parents 381394d + 35cf8ab commit dd6314e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Functional/ProfilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testProfilerIsDisabled($insulate)
3030
$client->enableProfiler();
3131
$this->assertFalse($client->getProfile());
3232
$client->request('GET', '/profiler');
33-
$this->assertInternalType('object', $client->getProfile());
33+
$this->assertIsObject($client->getProfile());
3434

3535
$client->request('GET', '/profiler');
3636
$this->assertFalse($client->getProfile());

0 commit comments

Comments
 (0)