diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php index 18451a9..83132c3 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php @@ -33,8 +33,7 @@ function testTermDelete() { } /** - * Test deleting a parent of a term with multiple parents does not delete - * the child term. + * Deleting a parent of a term with multiple parents does not delete the term. */ function testMultipleParentDelete() { $vocabulary = $this->createVocabulary(); @@ -47,11 +46,11 @@ function testMultipleParentDelete() { $parent_term1->delete(); $child_term = entity_load('taxonomy_term', $child_term_id, TRUE); - $this->assertTrue(!empty($child_term), 'Child term is not deleted if only one of its parents is removed'); + $this->assertTrue(!empty($child_term), 'Child term is not deleted if only one of its parents is removed.'); $parent_term2->delete(); $child_term = entity_load('taxonomy_term', $child_term_id, TRUE); - $this->assertTrue(empty($child_term), 'Child term is deleted if all of its parents are removed'); + $this->assertTrue(empty($child_term), 'Child term is deleted if all of its parents are removed.'); } /**