diff --git a/core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php b/core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php index 0bc1359..84076c5 100644 --- a/core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php +++ b/core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php @@ -288,7 +288,7 @@ public function testId() { /** * @covers ::getLabel */ - public function testgetLabel() { + public function testGetLabel() { $translatable_label = new TranslatableString($this->randomMachineName()); $entity_type = $this->setUpEntityType(array('label' => $translatable_label)); $this->assertSame($translatable_label, $entity_type->getLabel()); @@ -301,7 +301,7 @@ public function testgetLabel() { /** * @covers ::getGroupLabel */ - public function testgetGroupLabel() { + public function testGetGroupLabel() { $translatable_group_label = new TranslatableString($this->randomMachineName()); $entity_type = $this->setUpEntityType(array('group_label' => $translatable_group_label)); $this->assertSame($translatable_group_label, $entity_type->getGroupLabel());