X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FBulkFormTest.php;fp=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FBulkFormTest.php;h=eded04530d0a6dc395caf33f93c8a305f326f4ca;hp=319890b6fb8f3d77f82153a211f076d49a4146e9;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/web/core/modules/node/tests/src/Functional/Views/BulkFormTest.php b/web/core/modules/node/tests/src/Functional/Views/BulkFormTest.php index 319890b6f..eded04530 100644 --- a/web/core/modules/node/tests/src/Functional/Views/BulkFormTest.php +++ b/web/core/modules/node/tests/src/Functional/Views/BulkFormTest.php @@ -2,7 +2,7 @@ namespace Drupal\Tests\node\Functional\Views; -use Drupal\Component\Utility\SafeMarkup; +use Drupal\Component\Render\FormattableMarkup; use Drupal\language\Entity\ConfigurableLanguage; use Drupal\views\Views; @@ -55,7 +55,7 @@ class BulkFormTest extends NodeTestBase { 'promote' => FALSE, ]; $node = $this->drupalCreateNode($values); - $this->pass(SafeMarkup::format('Node %title created with language %langcode.', ['%title' => $node->label(), '%langcode' => $node->language()->getId()])); + $this->pass(new FormattableMarkup('Node %title created with language %langcode.', ['%title' => $node->label(), '%langcode' => $node->language()->getId()])); $this->nodes[] = $node; } @@ -66,7 +66,7 @@ class BulkFormTest extends NodeTestBase { if (!$node->hasTranslation($langcode)) { $title = $this->randomMachineName() . ' [' . $node->id() . ':' . $langcode . ']'; $translation = $node->addTranslation($langcode, ['title' => $title, 'promote' => FALSE]); - $this->pass(SafeMarkup::format('Translation %title created with language %langcode.', ['%title' => $translation->label(), '%langcode' => $translation->language()->getId()])); + $this->pass(new FormattableMarkup('Translation %title created with language %langcode.', ['%title' => $translation->label(), '%langcode' => $translation->language()->getId()])); } } $node->save(); @@ -77,7 +77,7 @@ class BulkFormTest extends NodeTestBase { $langcode = 'en'; $title = $this->randomMachineName() . ' [' . $node->id() . ':' . $langcode . ']'; $translation = $node->addTranslation($langcode, ['title' => $title]); - $this->pass(SafeMarkup::format('Translation %title created with language %langcode.', ['%title' => $translation->label(), '%langcode' => $translation->language()->getId()])); + $this->pass(new FormattableMarkup('Translation %title created with language %langcode.', ['%title' => $translation->label(), '%langcode' => $translation->language()->getId()])); $node->save(); // Check that all created translations are selected by the test view. @@ -249,15 +249,15 @@ class BulkFormTest extends NodeTestBase { $this->drupalPostForm(NULL, $edit, t('Apply to selected items')); $label = $this->loadNode(1)->label(); - $this->assertText("$label (Original translation) - The following content translations will be deleted:"); + $this->assertText("$label (Original translation) - The following content item translations will be deleted:"); $label = $this->loadNode(2)->label(); - $this->assertText("$label (Original translation) - The following content translations will be deleted:"); + $this->assertText("$label (Original translation) - The following content item translations will be deleted:"); $label = $this->loadNode(3)->getTranslation('en')->label(); $this->assertText($label); - $this->assertNoText("$label (Original translation) - The following content translations will be deleted:"); + $this->assertNoText("$label (Original translation) - The following content item translations will be deleted:"); $label = $this->loadNode(4)->label(); $this->assertText($label); - $this->assertNoText("$label (Original translation) - The following content translations will be deleted:"); + $this->assertNoText("$label (Original translation) - The following content item translations will be deleted:"); $this->drupalPostForm(NULL, [], t('Delete')); @@ -273,7 +273,7 @@ class BulkFormTest extends NodeTestBase { $node = $this->loadNode(5); $this->assertTrue($node, '5: Node has not been deleted'); - $this->assertText('Deleted 8 posts.'); + $this->assertText('Deleted 8 content items.'); } /**