Fix failing test

This commit is contained in:
Franz Liedke 2019-09-05 00:07:40 +02:00
parent 9dc2f1eb8e
commit ef38660f08

View File

@ -74,11 +74,11 @@ class RequireCsrfTokenTest extends TestCase
// The response body should contain proper error details
$body = (string) $response->getBody();
$this->assertJson($body);
$this->assertEquals([
'errors' => [
['status' => '400', 'code' => 'csrf_token_mismatch'],
],
], json_decode($body, true));
$json = json_decode($body, true);
$this->assertCount(1, $json['errors']);
$this->assertEquals('400', $json['errors'][0]['status']);
$this->assertEquals('csrf_token_mismatch', $json['errors'][0]['code']);
}
/**