aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bootstrap.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-01-04 17:14:36 +0100
committerNils Adermann <naderman@naderman.de>2011-01-20 22:47:48 +0100
commit74f537e89d899831c606b9abe218383a4e71408e (patch)
treef813e889fe6c584fb0a73b3bc642cdd1c243a5b7 /tests/bootstrap.php
parentba5c7d8e63d97650989c2866c20c11f16f4c1128 (diff)
downloadforums-74f537e89d899831c606b9abe218383a4e71408e.tar
forums-74f537e89d899831c606b9abe218383a4e71408e.tar.gz
forums-74f537e89d899831c606b9abe218383a4e71408e.tar.bz2
forums-74f537e89d899831c606b9abe218383a4e71408e.tar.xz
forums-74f537e89d899831c606b9abe218383a4e71408e.zip
[task/session-tests] Added tests for the session class.
Two first simple tests to check functionality of session_begin and session_create. Added a mock class for the cache as well as a subclass of session which has its cookie handling function mocked out to avoid header sending problems. PHPBB3-9732
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r--tests/bootstrap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 99f145e427..1fba323277 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -10,7 +10,7 @@
define('IN_PHPBB', true);
$phpbb_root_path = 'phpBB/';
$phpEx = 'php';
-$table_prefix = '';
+$table_prefix = 'phpbb_';
error_reporting(E_ALL & ~E_DEPRECATED);