Mercurial > hg > cmmr2012-drupal-site
diff core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | c75dbcec494b |
children |
line wrap: on
line diff
--- a/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php Thu Feb 28 11:14:44 2019 +0000 +++ b/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php Thu Feb 28 13:11:55 2019 +0000 @@ -3,7 +3,6 @@ namespace Drupal\Tests\comment\Kernel; use Drupal\comment\Entity\CommentType; -use Drupal\Component\Utility\Unicode; use Drupal\Core\Database\Database; use Drupal\Core\Entity\Entity\EntityViewDisplay; use Drupal\Core\Entity\Entity\EntityViewMode; @@ -47,7 +46,7 @@ * @see CommentDefaultFormatter::calculateDependencies() */ public function testViewMode() { - $mode = Unicode::strtolower($this->randomMachineName()); + $mode = mb_strtolower($this->randomMachineName()); // Create a new comment view mode and a view display entity. EntityViewMode::create([ 'id' => "comment.$mode", @@ -64,7 +63,7 @@ FieldStorageConfig::create([ 'entity_type' => 'entity_test', 'type' => 'comment', - 'field_name' => $field_name = Unicode::strtolower($this->randomMachineName()), + 'field_name' => $field_name = mb_strtolower($this->randomMachineName()), 'settings' => [ 'comment_type' => 'comment', ],