We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a53e1cd + 0aa1a0d commit 075b4b4Copy full SHA for 075b4b4
Tests/AbstractBrowserTest.php
@@ -14,6 +14,7 @@
14
use PHPUnit\Framework\TestCase;
15
use Symfony\Component\BrowserKit\CookieJar;
16
use Symfony\Component\BrowserKit\History;
17
+use Symfony\Component\BrowserKit\Request;
18
use Symfony\Component\BrowserKit\Response;
19
20
class AbstractBrowserTest extends TestCase
@@ -826,7 +827,7 @@ public function testInternalRequest()
826
827
'NEW_SERVER_KEY' => 'new-server-key-value',
828
]);
829
- $this->assertInstanceOf(\Symfony\Component\BrowserKit\Request::class, $client->getInternalRequest());
830
+ $this->assertInstanceOf(Request::class, $client->getInternalRequest());
831
}
832
833
public function testInternalRequestNull()
0 commit comments