aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-01-12 22:05:53 +0100
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-12 22:05:53 -0500
commit311a7ff75321ae6fa491fc360ebdd52b7692fc96 (patch)
treeb4380b9f46546a313db819a4fe456f280e2c1cd1 /tests
parent3a3a8bb96d0cb7be2529ab095f305fd3b042783c (diff)
downloadforums-311a7ff75321ae6fa491fc360ebdd52b7692fc96.tar
forums-311a7ff75321ae6fa491fc360ebdd52b7692fc96.tar.gz
forums-311a7ff75321ae6fa491fc360ebdd52b7692fc96.tar.bz2
forums-311a7ff75321ae6fa491fc360ebdd52b7692fc96.tar.xz
forums-311a7ff75321ae6fa491fc360ebdd52b7692fc96.zip
[feature/system-cron] Fix duplicate instantiation of class loader in tests.
PHPBB3-9596
Diffstat (limited to 'tests')
-rw-r--r--tests/bootstrap.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 1c0c0240ab..cee60c451b 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -31,11 +31,6 @@ require_once $phpbb_root_path . 'includes/class_loader.' . $phpEx;
$class_loader = new phpbb_class_loader($phpbb_root_path, '.php');
$class_loader->register();
-require $phpbb_root_path . 'includes/class_loader.php';
-
-$class_loader = new phpbb_class_loader($phpbb_root_path, '.php');
-$class_loader->register();
-
require_once 'test_framework/phpbb_test_case_helpers.php';
require_once 'test_framework/phpbb_test_case.php';
require_once 'test_framework/phpbb_database_test_case.php';