diff --git a/core/tests/Drupal/Tests/Core/Cache/CacheTest.php b/core/tests/Drupal/Tests/Core/Cache/CacheTest.php index a425572..9756679 100644 --- a/core/tests/Drupal/Tests/Core/Cache/CacheTest.php +++ b/core/tests/Drupal/Tests/Core/Cache/CacheTest.php @@ -134,7 +134,7 @@ public function testDeleteTags() { * @expectedExceptionMessage Cache tags must be strings, array given. */ public function testInvalidateTags() { - Cache::invalidateTags(['node' => [2, 3, 5, 8, 13]]); + Cache::deleteTags(['node' => [2, 3, 5, 8, 13]]); } }