diff --git a/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php b/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php index 5d6d708..60b989b 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php @@ -30,7 +30,7 @@ class BlockContentCreationTest extends BlockContentTestBase { */ protected $permissions = [ 'administer blocks', - 'administer block_content display', + 'administer block_content display' ]; /** @@ -64,7 +64,7 @@ public function testBlockContentCreation() { // Check that the Basic block has been created. $this->assertRaw(format_string('@block %name has been created.', [ '@block' => 'basic', - '%name' => $edit['info[0][value]'], + '%name' => $edit['info[0][value]'] ]), 'Basic block created.'); // Check that the view mode setting is hidden because only one exists. @@ -83,7 +83,7 @@ public function testBlockContentCreation() { // Check that the Basic block has been created. $this->assertRaw(format_string('A custom block with block description %value already exists.', [ - '%value' => $edit['info[0][value]'], + '%value' => $edit['info[0][value]'] ])); $this->assertResponse(200); } @@ -113,7 +113,7 @@ public function testBlockContentCreationMultipleViewModes() { // Check that the Basic block has been created. $this->assertRaw(format_string('@block %name has been created.', [ '@block' => 'basic', - '%name' => $edit['info[0][value]'], + '%name' => $edit['info[0][value]'] ]), 'Basic block created.'); // Save our block permanently @@ -165,7 +165,7 @@ public function testBlockContentCreationMultipleViewModes() { // Check that the Basic block has been created. $this->assertRaw(format_string('A custom block with block description %value already exists.', [ - '%value' => $edit['info[0][value]'], + '%value' => $edit['info[0][value]'] ])); $this->assertResponse(200); }