diff --git a/tests/Drupal/Commenting/DocCommentUnitTest.inc b/tests/Drupal/Commenting/DocCommentUnitTest.inc index eb105c3c53410196e47afa2a74b5f18fd8354d2a..e497574a4382d8e0ce9bf4b63b4040b4dbcaea46 100644 --- a/tests/Drupal/Commenting/DocCommentUnitTest.inc +++ b/tests/Drupal/Commenting/DocCommentUnitTest.inc @@ -125,7 +125,12 @@ function test14(array $matches, array $sub_key, $to) { /** * {@inheritdoc} */ -function test15_this_inheritdoc_is_correct(); +function test15_lower_case_inheritdoc(); + +/** + * {@inheritDoc} + */ +function test15_camel_case_inheritdoc(); /** * @inheritdoc diff --git a/tests/Drupal/Commenting/DocCommentUnitTest.inc.fixed b/tests/Drupal/Commenting/DocCommentUnitTest.inc.fixed index 24a9ead819ccad7c7554fd1316ccec5a9dccb3ae..18ec5ea56fcc69414adc77f80d0e8e1065ae54d0 100644 --- a/tests/Drupal/Commenting/DocCommentUnitTest.inc.fixed +++ b/tests/Drupal/Commenting/DocCommentUnitTest.inc.fixed @@ -134,7 +134,12 @@ function test14(array $matches, array $sub_key, $to) { /** * {@inheritdoc} */ -function test15_this_inheritdoc_is_correct(); +function test15_lower_case_inheritdoc(); + +/** + * {@inheritDoc} + */ +function test15_camel_case_inheritdoc(); /** * {@inheritdoc} diff --git a/tests/Drupal/Commenting/DocCommentUnitTest.php b/tests/Drupal/Commenting/DocCommentUnitTest.php index 62d16d6906e2d802f0ba7d9422d051dda05f963c..8cf53a213cda4ddb48c5342628c6d6446068cdf9 100644 --- a/tests/Drupal/Commenting/DocCommentUnitTest.php +++ b/tests/Drupal/Commenting/DocCommentUnitTest.php @@ -33,8 +33,8 @@ class DocCommentUnitTest extends CoderSniffUnitTest 66 => 1, 100 => 4, 101 => 1, - 131 => 1, 136 => 1, + 141 => 1, ]; case 'DocCommentUnitTest.1.inc':