diff --git a/core/modules/block_content/src/Tests/BlockContentListTest.php b/core/modules/block_content/src/Tests/BlockContentListTest.php index 30dd9a2..a776a3f 100644 --- a/core/modules/block_content/src/Tests/BlockContentListTest.php +++ b/core/modules/block_content/src/Tests/BlockContentListTest.php @@ -43,7 +43,7 @@ public function testListing() { $this->assertEqual(count($elements), 3, 'Correct number of table header cells found.'); // Test the contents of each th cell. - $expected_items = array(t('Block description'), t('Type'), t('Operations')); + $expected_items = array(t('Block description'), t('Block Type'), t('Operations')); foreach ($elements as $key => $element) { $this->assertIdentical((string) $element[0], $expected_items[$key]); }