diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-11-23 22:02:24 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-11-23 22:02:24 +0100 |
commit | f283f5bd03776230df220ff0086d5d3fd3023bb8 (patch) | |
tree | 753626d39433344a5ca80323181058d8bf9c07d8 /tests | |
parent | 30e01a9e4b91865a32a9afc4e5d4deb9bb9a933b (diff) | |
parent | 8d178f15f06e0f6b5e64447dc07157a796645572 (diff) | |
download | forums-f283f5bd03776230df220ff0086d5d3fd3023bb8.tar forums-f283f5bd03776230df220ff0086d5d3fd3023bb8.tar.gz forums-f283f5bd03776230df220ff0086d5d3fd3023bb8.tar.bz2 forums-f283f5bd03776230df220ff0086d5d3fd3023bb8.tar.xz forums-f283f5bd03776230df220ff0086d5d3fd3023bb8.zip |
Merge pull request #4016 from CHItA/ticket/14270
[ticket/14270] Purge cache when the installer is finished
* CHItA/ticket/14270:
[ticket/14270] Purge cache when the installer is finished
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 3 | ||||
-rw-r--r-- | tests/test_framework/phpbb_ui_test_case.php | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 9adbda9fc6..323d97ff42 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -295,7 +295,8 @@ class phpbb_functional_test_case extends phpbb_test_case 'installer.create_config_file.options' => [ 'debug' => true, 'environment' => 'test', - ] + ], + 'cache.driver.class' => 'phpbb\cache\driver\file' ]) ->without_compiled_container() ->get_container(); diff --git a/tests/test_framework/phpbb_ui_test_case.php b/tests/test_framework/phpbb_ui_test_case.php index 5da176e929..e118801972 100644 --- a/tests/test_framework/phpbb_ui_test_case.php +++ b/tests/test_framework/phpbb_ui_test_case.php @@ -128,7 +128,8 @@ class phpbb_ui_test_case extends phpbb_test_case 'installer.create_config_file.options' => [ 'debug' => true, 'environment' => 'test', - ] + ], + 'cache.driver.class' => 'phpbb\cache\driver\file' ]) ->without_compiled_container() ->get_container(); |