diff --git a/core/modules/views/lib/Drupal/views/Tests/UI/FieldUITest.php b/core/modules/views/lib/Drupal/views/Tests/UI/FieldUITest.php index b02821f..0a58cec 100644 --- a/core/modules/views/lib/Drupal/views/Tests/UI/FieldUITest.php +++ b/core/modules/views/lib/Drupal/views/Tests/UI/FieldUITest.php @@ -25,7 +25,7 @@ public static function getInfo() { return array( 'name' => 'Field: UI', 'description' => 'Tests the UI of field handlers.', - 'group' => 'Views UI' + 'group' => 'Views UI', ); } @@ -39,7 +39,7 @@ public function testFieldUI() { $this->assertNoText('Views test: Name (Name) [' . t('hidden') . ']'); // Hides the field and check whether the hidden label is appended. - $edit_handler_url = "admin/structure/views/nojs/config-item/test_view/default/field/name"; + $edit_handler_url = 'admin/structure/views/nojs/config-item/test_view/default/field/name'; $this->drupalPost($edit_handler_url, array('options[exclude]' => TRUE), t('Apply')); $this->assertText('Views test: Name (Name) [' . t('hidden') . ']');