From b1cc5f25872b375d339cc44411a1f48fc4af6bb0 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Tue, 31 Oct 2023 16:58:47 +0100 Subject: [PATCH] fix test --- tests/Controller/ReportingControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Controller/ReportingControllerTest.php b/tests/Controller/ReportingControllerTest.php index b84716239..6c4f1fa82 100644 --- a/tests/Controller/ReportingControllerTest.php +++ b/tests/Controller/ReportingControllerTest.php @@ -26,7 +26,7 @@ class ReportingControllerTest extends ControllerBaseTest $client = $this->getClientForAuthenticatedUser(User::ROLE_ADMIN); $this->request($client, '/reporting/'); $nodes = $client->getCrawler()->filter('section.content div.row-cards a.card-link'); - $this->assertCount(11, $nodes); + $this->assertCount(12, $nodes); } public function testOverviewPageAsUser()