aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/functions/validate_user_email_test.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/functions/validate_user_email_test.php b/tests/functions/validate_user_email_test.php
index f64d01517c..d23ffc0503 100644
--- a/tests/functions/validate_user_email_test.php
+++ b/tests/functions/validate_user_email_test.php
@@ -28,10 +28,12 @@ class phpbb_functions_validate_user_email_test extends phpbb_database_test_case
protected function setUp()
{
- global $phpbb_dispatcher, $phpbb_root_path, $phpEx;
+ global $cache, $phpbb_dispatcher, $phpbb_root_path, $phpEx;
parent::setUp();
+ $cache = new \phpbb\cache\driver\file();
+ $cache->purge();
$this->db = $this->new_dbal();
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
$language = new phpbb\language\language(new phpbb\language\language_file_loader($phpbb_root_path, $phpEx));