diff --git a/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php b/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php index 39203d9..4b40572 100644 --- a/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php +++ b/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php @@ -22,12 +22,12 @@ public static function getInfo() { return array( 'name' => 'IP address banning', 'description' => 'Test IP address banning.', - 'group' => 'Ban' + 'group' => 'Ban', ); } /** - * Test a variety of user input to confirm correct validation and saving of data. + * Tests various user input to confirm correct validation and saving of data. */ function testIPAddressValidation() { // Create user. @@ -76,7 +76,7 @@ function testIPAddressValidation() { // Submit your own IP address. This fails, although it works when testing // manually. - // TODO: on some systems this test fails due to a bug or inconsistency in cURL. + // TODO: On some systems this test fails due to a bug/inconsistency in cURL. // $edit = array(); // $edit['ip'] = ip_address(); // $this->drupalPost('admin/config/people/ban', $edit, t('Save'));