X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FBulkFormAccessTest.php;h=19c409719d06db8931d7262972909116e845d9b6;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=194b9b06ceb38b3af8c24313cfae46e864a95ef1;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/web/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php b/web/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php index 194b9b06c..19c409719 100644 --- a/web/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php +++ b/web/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php @@ -2,7 +2,7 @@ namespace Drupal\Tests\node\Functional\Views; -use Drupal\Component\Utility\SafeMarkup; +use Drupal\Component\Render\FormattableMarkup; use Drupal\node\Entity\Node; use Drupal\node\Entity\NodeType; @@ -88,7 +88,7 @@ class BulkFormAccessTest extends NodeTestBase { 'action' => 'node_unpublish_action', ]; $this->drupalPostForm('test-node-bulk-form', $edit, t('Apply to selected items')); - $this->assertRaw(SafeMarkup::format('No access to execute %action on the @entity_type_label %entity_label.', [ + $this->assertRaw(new FormattableMarkup('No access to execute %action on the @entity_type_label %entity_label.', [ '%action' => 'Unpublish content', '@entity_type_label' => 'Content', '%entity_label' => $node->label(), @@ -117,7 +117,7 @@ class BulkFormAccessTest extends NodeTestBase { ]; $this->drupalPostForm('test-node-bulk-form', $edit, t('Apply to selected items')); // Test that the action message isn't shown. - $this->assertNoRaw(SafeMarkup::format('%action was applied to 1 item.', [ + $this->assertNoRaw(new FormattableMarkup('%action was applied to 1 item.', [ '%action' => 'Unpublish content', ])); // Re-load the node and check the status.