diff --git a/core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php b/core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php index c658e608f7d90d4ed4700137f23bf1f19744e1e0..a750fc426c8e1da880df220563ec051f36098aa1 100644 --- a/core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php +++ b/core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php @@ -16,7 +16,7 @@ * @group Drupal * @group User * - * @coverDefaultClass \Drupal\user\UserAuth + * @coversDefaultClass \Drupal\user\UserAuth */ class UserAuthTest extends UnitTestCase { @@ -99,7 +99,7 @@ public function setUp() { /** * Tests failing authentication with missing credential parameters. * - * @covers ::authenticate() + * @covers ::authenticate * * @dataProvider providerTestAuthenticateWithMissingCredentials */ @@ -127,7 +127,7 @@ public function providerTestAuthenticateWithMissingCredentials() { /** * Tests the authenticate method with no account returned. * - * @covers ::authenticate() + * @covers ::authenticate */ public function testAuthenticateWithNoAccountReturned() { $this->userStorage->expects($this->once()) @@ -141,7 +141,7 @@ public function testAuthenticateWithNoAccountReturned() { /** * Tests the authenticate method with an incorrect password. * - * @covers ::authenticate() + * @covers ::authenticate */ public function testAuthenticateWithIncorrectPassword() { $this->userStorage->expects($this->once()) @@ -160,7 +160,7 @@ public function testAuthenticateWithIncorrectPassword() { /** * Tests the authenticate method with a correct password. * - * @covers ::authenticate() + * @covers ::authenticate */ public function testAuthenticateWithCorrectPassword() { $this->testUser->expects($this->once()) @@ -183,7 +183,7 @@ public function testAuthenticateWithCorrectPassword() { /** * Tests the authenticate method with a correct password and new password hash. * - * @covers ::authenticate() + * @covers ::authenticate */ public function testAuthenticateWithCorrectPasswordAndNewPasswordHash() { $this->testUser->expects($this->once()) diff --git a/core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php b/core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php index 258279e53e6bc68c7b7f0557a2f0a18b8b0f5eae..071df3e8039c2d405283513154c84a559dcec167 100644 --- a/core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php +++ b/core/tests/Drupal/Tests/Core/Annotation/TranslationTest.php @@ -13,7 +13,7 @@ /** * Tests the Translation annotation. * - * @covers \Drupal\Core\Annotation\Translation. + * @covers \Drupal\Core\Annotation\Translation */ class TranslationTest extends UnitTestCase {