diff -u b/core/modules/simpletest/simpletest.module b/core/modules/simpletest/simpletest.module --- b/core/modules/simpletest/simpletest.module +++ b/core/modules/simpletest/simpletest.module @@ -93,11 +93,11 @@ /** * Formats each test result type pluralized summary. * - * @param array $summary + * @param array $summary * A summary of the test results. * * @return array - * returns the pluralized test summary items. + * The pluralized test summary items. */ function _simpletest_build_summary_line($summary) { $translation = \Drupal::translation(); @@ -113,11 +113,11 @@ /** * Formats test result summaries into a comma separated string for run-tests.sh. * - * @param array $summary + * @param array $summary * A summary of the test results. * * @return string - * A concatinated string of the formatted test results. + * A concatenated string of the formatted test results. */ function _simpletest_format_summary_line($summary) { $parts = _simpletest_build_summary_line($summary); diff -u b/core/modules/simpletest/templates/simpletest-result-summary.html.twig b/core/modules/simpletest/templates/simpletest-result-summary.html.twig --- b/core/modules/simpletest/templates/simpletest-result-summary.html.twig +++ b/core/modules/simpletest/templates/simpletest-result-summary.html.twig @@ -4,12 +4,12 @@ * Default theme implementation for simpletest result summaries. * * Available variables: - * label: An optional label to be rendered before the results. - * items: The result pluralized items for each result. - * pass: The number of passed test results. - * fail: The number of failed test results. - * exception: The number of exceptioned test results. - * debug: The number of debuged test results. + * - label: An optional label to be rendered before the results. + * - items: The result pluralized items for each result. + * - pass: The number of passed test results. + * - fail: The number of failed test results. + * - exception: The number of exceptioned test results. + * - debug: The number of debuged test results. * * @see template_preprocess_simpletest_result_summary() *