Skip to content
Snippets Groups Projects
Commit fdb7c475 authored by catch's avatar catch
Browse files

Issue #3188056 by longwave: [Symfony 5]...

Issue #3188056 by longwave: [Symfony 5] Symfony\Component\Serializer\Encoder\DecoderInterface::decode() no longer accepts NULL as $format
parent 54865346
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ public function setUp(): void {
parent::setUp();
$serializer = $this->prophesize(SerializerInterface::class);
$serializer->willImplement(DecoderInterface::class);
$serializer->decode(Json::encode(['this is an array']), NULL, Argument::type('array'))
$serializer->decode(Json::encode(['this is an array']), 'json', Argument::type('array'))
->willReturn(['this is an array']);
$this->requestHandler = new RequestHandler($serializer->reveal());
}
......@@ -53,7 +53,7 @@ public function setUp(): void {
* @covers ::handle
*/
public function testHandle() {
$request = new Request([], [], [], [], [], [], Json::encode(['this is an array']));
$request = new Request([], [], [], [], [], ['CONTENT_TYPE' => 'application/json'], Json::encode(['this is an array']));
$route_match = new RouteMatch('test', (new Route('/rest/test', ['_rest_resource_config' => 'restplugin', 'example' => ''], ['_format' => 'json']))->setMethods(['GET']));
$resource = $this->prophesize(StubRequestHandlerResourcePlugin::class);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment