Skip to content
Snippets Groups Projects
Commit e6d24920 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2396695 by hussainweb: Clean-up link module test members - ensure...

Issue #2396695 by hussainweb: Clean-up link module test members - ensure property definition and use of camelCase naming convention
parent 9df9e020
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -25,7 +25,7 @@ class LinkFieldTest extends WebTestBase {
*
* @var array
*/
public static $modules = array('entity_test', 'link');
public static $modules = ['entity_test', 'link'];
/**
* A field to use in this test class.
......@@ -41,22 +41,14 @@ class LinkFieldTest extends WebTestBase {
*/
protected $field;
/**
* A user with permission to view and manage test entities.
*
* @var object
*/
protected $web_user;
protected function setUp() {
parent::setUp();
$this->web_user = $this->drupalCreateUser(array(
$this->drupalLogin($this->drupalCreateUser([
'view test entity',
'administer entity_test content',
'link to any page',
));
$this->drupalLogin($this->web_user);
]));
}
/**
......
......@@ -25,13 +25,12 @@ class LinkFieldUITest extends WebTestBase {
*
* @var array
*/
public static $modules = array('node', 'link', 'field_ui');
public static $modules = ['node', 'link', 'field_ui'];
protected function setUp() {
parent::setUp();
$this->web_user = $this->drupalCreateUser(array('administer content types', 'administer node fields', 'administer node display'));
$this->drupalLogin($this->web_user);
$this->drupalLogin($this->drupalCreateUser(['administer content types', 'administer node fields', 'administer node display']));
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment