diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php b/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php index 4898c66..5a35c08 100644 --- a/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php +++ b/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php @@ -82,7 +82,7 @@ class ForumTest extends WebTestBase { } /** - * Login users, create forum nodes, and test forum functionality through the admin and user interfaces. + * Login users, create forum nodes, and test forum functionality. */ function testForum() { //Check that the basic forum install creates a default forum topic @@ -444,7 +444,7 @@ class ForumTest extends WebTestBase { $this->assertNoRaw(t('The item %title is a forum container, not a forum.', array('%title' => $forum['name'])), t('No error message was shown')); } - // Retrieve node object, ensure that the topic was created and in the proper forum. + // Retrieve node object, ensure topic was created and in the proper forum. $node = $this->drupalGetNodeByTitle($title); $this->assertTrue($node != NULL, t('Node @title was loaded', array('@title' => $title))); $this->assertEqual($node->taxonomy_forums[LANGUAGE_NOT_SPECIFIED][0]['tid'], $tid, 'Saved forum topic was in the expected forum');