X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fviews%2Ftests%2Fsrc%2FFunctional%2FDefaultViewsTest.php;h=a4ae23aa487c9d517b3986f23633ef3679d15fda;hb=1c1cb0980bfa6caf0c24cce671b6bb541dc87583;hp=9e4c338ddc7480b3343c5d162040adba95d9db22;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/web/core/modules/views/tests/src/Functional/DefaultViewsTest.php b/web/core/modules/views/tests/src/Functional/DefaultViewsTest.php index 9e4c338dd..a4ae23aa4 100644 --- a/web/core/modules/views/tests/src/Functional/DefaultViewsTest.php +++ b/web/core/modules/views/tests/src/Functional/DefaultViewsTest.php @@ -4,15 +4,14 @@ namespace Drupal\Tests\views\Functional; use Drupal\comment\CommentInterface; use Drupal\comment\Tests\CommentTestTrait; -use Drupal\Component\Utility\Unicode; use Drupal\Core\Field\FieldStorageDefinitionInterface; use Drupal\Core\Language\LanguageInterface; use Drupal\Core\Url; -use Drupal\field\Tests\EntityReference\EntityReferenceTestTrait; use Drupal\views\Views; use Drupal\comment\Entity\Comment; use Drupal\taxonomy\Entity\Vocabulary; use Drupal\taxonomy\Entity\Term; +use Drupal\Tests\field\Traits\EntityReferenceTestTrait; /** * Tests the default views provided by views. @@ -53,7 +52,7 @@ class DefaultViewsTest extends ViewTestBase { $vocabulary = Vocabulary::create([ 'name' => $this->randomMachineName(), 'description' => $this->randomMachineName(), - 'vid' => Unicode::strtolower($this->randomMachineName()), + 'vid' => mb_strtolower($this->randomMachineName()), 'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED, 'help' => '', 'nodes' => ['page' => 'page'], @@ -62,7 +61,7 @@ class DefaultViewsTest extends ViewTestBase { $vocabulary->save(); // Create a field. - $field_name = Unicode::strtolower($this->randomMachineName()); + $field_name = mb_strtolower($this->randomMachineName()); $handler_settings = [ 'target_bundles' => [ @@ -97,7 +96,7 @@ class DefaultViewsTest extends ViewTestBase { 'status' => CommentInterface::PUBLISHED, 'entity_id' => $node->id(), 'entity_type' => 'node', - 'field_name' => 'comment' + 'field_name' => 'comment', ]; Comment::create($comment)->save();