diff --git a/Tests/Functional/Frontend/ProcessesMarkersHookTest.php b/Tests/Functional/Frontend/ProcessesMarkersHookTest.php index 2924ff4..be89277 100644 --- a/Tests/Functional/Frontend/ProcessesMarkersHookTest.php +++ b/Tests/Functional/Frontend/ProcessesMarkersHookTest.php @@ -51,7 +51,7 @@ public function executesHookClass(): void $this->fetchContentForPage(1) ); - $pageCache = $this->getAllRecords('cache_pages_tags'); + $pageCache = $this->getAllRecords('pages_tags'); self::assertCount(2, $pageCache); self::assertSame('tx_variables_key_hash_b3560bb929f682dcc19c903256f98639', $pageCache[0]['tag']); } diff --git a/Tests/Functional/Frontend/ProcessesMarkersTest.php b/Tests/Functional/Frontend/ProcessesMarkersTest.php index f199160..f6c7f1e 100644 --- a/Tests/Functional/Frontend/ProcessesMarkersTest.php +++ b/Tests/Functional/Frontend/ProcessesMarkersTest.php @@ -39,7 +39,7 @@ public function noMarkerAppliedAsNoneExist(): void $this->fetchContentForPage(1) ); - $pageCache = $this->getAllRecords('cache_pages_tags'); + $pageCache = $this->getAllRecords('pages_tags'); self::assertCount(1, $pageCache); } @@ -53,7 +53,7 @@ public function appliesMarkersStoredOnSamePage(): void $this->fetchContentForPage(1) ); - $pageCache = $this->getAllRecords('cache_pages_tags'); + $pageCache = $this->getAllRecords('pages_tags'); self::assertCount(2, $pageCache); self::assertSame('tx_variables_key_hash_b3560bb929f682dcc19c903256f98639', $pageCache[0]['tag']); } @@ -68,7 +68,7 @@ public function appliesMarkersFromRootlinePage(): void $this->fetchContentForPage(2) ); - $pageCache = $this->getAllRecords('cache_pages_tags'); + $pageCache = $this->getAllRecords('pages_tags'); self::assertCount(3, $pageCache); self::assertSame('tx_variables_key_hash_b3560bb929f682dcc19c903256f98639', $pageCache[0]['tag']); self::assertSame('tx_variables_key_hash_7324efb2ab7ff6e7ef0fe77210ff6b20', $pageCache[1]['tag']); @@ -84,7 +84,7 @@ public function appliesMarkersFromConfiguredStoragePid(): void $this->fetchContentForPage(3) ); - $pageCache = $this->getAllRecords('cache_pages_tags'); + $pageCache = $this->getAllRecords('pages_tags'); self::assertCount(2, $pageCache); self::assertSame('tx_variables_key_hash_2328e4c0fcee8716480763f53e97ea82', $pageCache[0]['tag']); }