Skip to content

Commit 35cf8ab

Browse files
Merge branch '3.4' into 4.3
* 3.4: Fix assertInternalType deprecation in phpunit 9 Micro-typo fix
2 parents 077fb07 + 01f4a63 commit 35cf8ab

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)