diff --git a/tests/src/Kernel/FooterBlockTest.php b/tests/src/Kernel/FooterBlockTest.php
index ff29c276ff08cb5bbe3efc5ae7de3cf8be7ea5c1..c201d6d964702bd817048ca05f8bcc87b69dc316 100644
--- a/tests/src/Kernel/FooterBlockTest.php
+++ b/tests/src/Kernel/FooterBlockTest.php
@@ -64,11 +64,11 @@ class FooterBlockTest extends SparqlKernelTestBase {
 
     // For now we assert only minimal till we have a footer component.
     $rows = $crawler->filter('.row');
-    $this->assertCount(3, $rows);
+    $this->assertCount(2, $rows);
     $borderedSections = $crawler->filter('.bcl-footer__bordered-row');
-    $this->assertCount(2, $borderedSections);
+    $this->assertCount(1, $borderedSections);
     $sectionTitles = $crawler->filter('p.fw-bold.mb-2');
-    $this->assertCount(3, $sectionTitles);
+    $this->assertCount(2, $sectionTitles);
     $sectionLinks = $crawler->filter('div.col-12.col-lg-4:nth-child(2) a.text-underline-hover.d-block.mb-1');
     $this->assertCount(3, $sectionLinks);
   }