mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/10729] Use mocked null cache for phpunit 3.6 on travis with php 5.2
PHPBB3-10729
This commit is contained in:
parent
e28b93e0cc
commit
bea5f94de6
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue