diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-10 17:22:35 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-12-10 17:22:35 +0000 |
commit | fc56c024d3a517676e2145fbdfa92811be089c49 (patch) | |
tree | 92b989d3800f4308a554adf04103302d4e7d650e /modules/system | |
parent | 318436d19936fff46b0379929fa77edf4903bbf8 (diff) | |
download | brdo-fc56c024d3a517676e2145fbdfa92811be089c49.tar.gz brdo-fc56c024d3a517676e2145fbdfa92811be089c49.tar.bz2 |
#656300 by JoshuaRogers: Fixed Typo in system.test prevents D7 from passing tests.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.test b/modules/system/system.test index ee649946d..18b9f8807 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -554,7 +554,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase { function testAccessDenied() { $this->drupalGet('admin'); $this->assertText(t('Access denied'), t('Found the default 403 page')); - $this->assertReponse(403); + $this->assertResponse(403); $edit = array( 'title' => array(LANGUAGE_NONE => array(array('value' => $this->randomName(10)))), @@ -584,7 +584,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase { $this->drupalGet('admin'); $this->assertText(t('Access denied'), t('Found the default 403 page')); - $this->assertReponse(403); + $this->assertResponse(403); $this->assertText(t('User login'), t('Blocks are shown on the default 403 page')); // Log back in, set the custom 403 page to /user and remove the block |