From bbe4b34681f9bb52c344ac4475c1adc7b5c3f601 Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Mon, 4 Jun 2012 01:07:43 -0400 Subject: Issue #1600892 by tim.plunkett, sun: Fixed Tests use magic numbers 1 and 2 instead of user role constants. --- modules/block/block.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/block') diff --git a/modules/block/block.test b/modules/block/block.test index cdd0d4589..8e6e47042 100644 --- a/modules/block/block.test +++ b/modules/block/block.test @@ -97,7 +97,7 @@ class BlockTestCase extends DrupalWebTestCase { // Set visibility only for authenticated users, to verify delete functionality. $edit = array(); - $edit['roles[2]'] = TRUE; + $edit['roles[' . DRUPAL_AUTHENTICATED_RID . ']'] = TRUE; $this->drupalPost('admin/structure/block/manage/block/' . $bid . '/configure', $edit, t('Save block')); // Delete the created custom block & verify that it's been deleted and no longer appearing on the page. @@ -171,7 +171,7 @@ class BlockTestCase extends DrupalWebTestCase { // authenticated users. $edit = array(); $edit['pages'] = 'user*'; - $edit['roles[2]'] = TRUE; + $edit['roles[' . DRUPAL_AUTHENTICATED_RID . ']'] = TRUE; $this->drupalPost('admin/structure/block/manage/' . $block['module'] . '/' . $block['delta'] . '/configure', $edit, t('Save block')); // Move block to the first sidebar. -- cgit v1.2.3