diff options
| author | Máté Bartus <mate.bartus@gmail.com> | 2016-01-08 14:24:24 +0100 |
|---|---|---|
| committer | Máté Bartus <mate.bartus@gmail.com> | 2016-01-08 14:24:24 +0100 |
| commit | 2f7517a0fecc1c563c0d023eac0cd3057f77e13b (patch) | |
| tree | 0e8b355589ed3437975aa06a2b966861a1cabf96 /tests/functional/feed_test.php | |
| parent | a7058d968ff2e4b4cb4b32fb3f7284bd1a539c93 (diff) | |
| parent | cf1fc202975aa055d0bb926a5dce1c3896bbd1e1 (diff) | |
| download | forums-2f7517a0fecc1c563c0d023eac0cd3057f77e13b.tar forums-2f7517a0fecc1c563c0d023eac0cd3057f77e13b.tar.gz forums-2f7517a0fecc1c563c0d023eac0cd3057f77e13b.tar.bz2 forums-2f7517a0fecc1c563c0d023eac0cd3057f77e13b.tar.xz forums-2f7517a0fecc1c563c0d023eac0cd3057f77e13b.zip | |
Merge pull request #4111 from marc1706/ticket/14394
[ticket/14394] Only purge cache in functional tests if necessary
Diffstat (limited to 'tests/functional/feed_test.php')
| -rw-r--r-- | tests/functional/feed_test.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/functional/feed_test.php b/tests/functional/feed_test.php index ad5c4a5cab..e48dfc043a 100644 --- a/tests/functional/feed_test.php +++ b/tests/functional/feed_test.php @@ -20,6 +20,12 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case static public $init_values = array(); + public function setUp() + { + parent::setUp(); + $this->purge_cache(); + } + public function __construct($name = null, array $data = array(), $dataName = '') { parent::__construct($name, $data, $dataName); |
