[ticket/10729] Use mocked null cache for phpunit 3.6 on travis with php 5.2

PHPBB3-10729
This commit is contained in:
Joas Schilling 2014-09-23 09:03:44 +02:00
parent e28b93e0cc
commit bea5f94de6

View file

@ -10,6 +10,7 @@
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_user.php';
require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_tools.php';
require_once dirname(__FILE__) . '/../mock/null_cache.php';
class phpbb_functions_user_delete_user_test extends phpbb_database_test_case
{
@ -32,7 +33,7 @@ class phpbb_functions_user_delete_user_test extends phpbb_database_test_case
'load_online_time' => 5,
'search_type' => 'fulltext_mysql',
);
$cache = $this->getMock('cache');
$cache = new phpbb_mock_null_cache();
}
public function first_last_post_data()