summaryrefslogtreecommitdiff
path: root/modules/php
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2012-06-04 01:07:43 -0400
committerDavid Rothstein <drothstein@gmail.com>2012-06-04 01:07:43 -0400
commitbbe4b34681f9bb52c344ac4475c1adc7b5c3f601 (patch)
treebf05ebf2c6df41b141eaf9f3f04737d894449a4c /modules/php
parent31a4cbdb0e804a66ef3f602450c872cefa949cbb (diff)
downloadbrdo-bbe4b34681f9bb52c344ac4475c1adc7b5c3f601.tar.gz
brdo-bbe4b34681f9bb52c344ac4475c1adc7b5c3f601.tar.bz2
Issue #1600892 by tim.plunkett, sun: Fixed Tests use magic numbers 1 and 2 instead of user role constants.
Diffstat (limited to 'modules/php')
-rw-r--r--modules/php/php.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/php/php.test b/modules/php/php.test
index 50fb55283..b68bd501d 100644
--- a/modules/php/php.test
+++ b/modules/php/php.test
@@ -33,8 +33,8 @@ class PHPTestCase extends DrupalWebTestCase {
// Verify that anonymous and authenticated user roles do not have access.
$this->drupalGet('admin/config/content/formats/' . $php_format_id);
- $this->assertFieldByName('roles[1]', FALSE, t('Anonymous users do not have access to PHP code format.'));
- $this->assertFieldByName('roles[2]', FALSE, t('Authenticated users do not have access to PHP code format.'));
+ $this->assertFieldByName('roles[' . DRUPAL_ANONYMOUS_RID . ']', FALSE, t('Anonymous users do not have access to PHP code format.'));
+ $this->assertFieldByName('roles[' . DRUPAL_AUTHENTICATED_RID . ']', FALSE, t('Authenticated users do not have access to PHP code format.'));
}
/**