8000 [2.7] Fix tests · symfony/symfony@c8e1384 · GitHub
[go: up one dir, main page]

Skip to content

Commit c8e1384

Browse files
paradajozseffabpot
authored andcommitted
[2.7] Fix tests
1 parent 528572b commit c8e1384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/ClassLoader/Tests/LegacyApcUniversalClassLoaderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LegacyApcUniversalClassLoaderTest extends \PHPUnit_Framework_TestCase
2121
protected function setUp()
2222
{
2323
if (ini_get('apc.enabled') && ini_get('apc.enable_cli')) {
24-
apcu_clear_cache('user');
24+
apcu_clear_cache();
2525
} else {
2626
$this->markTestSkipped('APC is not enabled.');
2727
}
@@ -30,7 +30,7 @@ protected function setUp()
3030
protected function tearDown()
3131
{
3232
if (ini_get('apc.enabled') && ini_get('apc.enable_cli')) {
33-
apcu_clear_cache('user');
33+
apcu_clear_cache();
3434
}
3535
}
3636

0 commit comments

Comments
 (0)
0