diff options
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/tests/session.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/tests/session.test b/modules/simpletest/tests/session.test index 640431487..70bf70565 100644 --- a/modules/simpletest/tests/session.test +++ b/modules/simpletest/tests/session.test @@ -309,7 +309,7 @@ class SessionHttpsTestCase extends DrupalWebTestCase { $this->curlClose(); $this->drupalGet($this->httpsUrl('admin'), array(), array('Cookie: ' . $cookie)); $this->assertText(t('Administer')); - $this->assertNoResponse(403); + $this->assertResponse(200); // Verify that user is not logged in on non-secure URL. if (!$is_https) { @@ -375,7 +375,7 @@ class SessionHttpsTestCase extends DrupalWebTestCase { $this->drupalGet($url, array(), array('Cookie: ' . $cookie)); if ($cookie_key == $url_key) { $this->assertText(t('Administer')); - $this->assertNoResponse(403); + $this->assertResponse(200); } else { $this->assertNoText(t('Administer')); |