summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-06 15:20:09 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-06 15:20:09 +0000
commitaf884c3888c9db680fa11b8fd7804265f4c71960 (patch)
tree150e2de9176ace09bae54f563b20d8a54cb33980 /modules
parent73356fde8b3ebd076e2c588bb8935f914fd8ebb8 (diff)
downloadbrdo-af884c3888c9db680fa11b8fd7804265f4c71960.tar.gz
brdo-af884c3888c9db680fa11b8fd7804265f4c71960.tar.bz2
#302763 by DamZ: Fixing test failures, removing legacy globals check cruft.
Diffstat (limited to 'modules')
-rw-r--r--modules/simpletest/tests/session.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/session.test b/modules/simpletest/tests/session.test
index b4835832d..2e564e0bf 100644
--- a/modules/simpletest/tests/session.test
+++ b/modules/simpletest/tests/session.test
@@ -113,7 +113,7 @@ class SessionTestCase extends DrupalWebTestCase {
$this->assertEqual($authenticated, $this->session_count_authenticated, t('Correctly counted @count authenticated sessions.', array('@count' => $authenticated)), t('Session'));
// Should return 0 sessions from 1 second from now.
- $this->assertEqual(sess_count($_SERVER['REQUEST_TIME'] + 1), 0, t('Correctly returned 0 sessions newer than the current time.'), t('Session'));
+ $this->assertEqual(sess_count(time() + 1), 0, t('Correctly returned 0 sessions newer than the current time.'), t('Session'));
}