Browse Source

Fix: /tmp will have unreadable directories causing failing tests

Rachman Chavik 8 years ago
parent
commit
c5207154c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Cache/CacheTest.php

+ 1 - 1
tests/TestCase/Cache/CacheTest.php

@@ -179,7 +179,7 @@ class CacheTest extends TestCase
         ]);
         Cache::setConfig('tests_fallback_final', [
             'engine' => 'File',
-            'path' => TMP,
+            'path' => TMP . 'cake_test',
             'groups' => ['integration_group_3'],
         ]);