Skip to content
Snippets Groups Projects
Commit aac3bbca authored by cdutheil's avatar cdutheil
Browse files

1247(test):

- supprime var_dump
parent 4abf61d2
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@ class GetUnreadPrefectureDocumentsTest extends S2lowIntegrationTestCase
public function testShouldListUnreadPrefectureDocuments(): void
{
$client = $this->getAuthenticatedClientWithUserLoggedAs(UserRole::Utilisateur);
$this->createTransactionOfType(ActesStatusSQL::STATUS_ACQUITTEMENT_RECU, self::DEMANDE_PIECES_COMPLEMENTAIRES);
$this->createTransactionOfType(ActesStatusSQL::STATUS_VALIDE, self::DEMANDE_PIECES_COMPLEMENTAIRES);
......@@ -38,7 +39,7 @@ class GetUnreadPrefectureDocumentsTest extends S2lowIntegrationTestCase
$response = $client->getResponse();
$contentArray = json_decode($response->getContent(), true);
var_dump($response->getContent());
foreach ($contentArray as $document) {
static::assertArrayHasKey('id', $document);
static::assertArrayHasKey('type', $document);
......
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