Skip to content

Commit 81ab4ee

Browse files
committed
minor symfony#17521 make apc class loader testable against apcu without apc bc layer (Tobion)
This PR was merged into the 2.7 branch. Discussion ---------- make apc class loader testable against apcu without apc bc layer | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- 24160b3 make apc class loader testable against apcu without apc bc layer
2 parents 1ec3e51 + 24160b3 commit 81ab4ee

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,12 @@
1414
use Symfony\Component\ClassLoader\ApcClassLoader;
1515
use Symfony\Component\ClassLoader\ClassLoader;
1616

17-
/**
18-
* @requires extension apc
19-
*/
2017
class ApcClassLoaderTest extends \PHPUnit_Framework_TestCase
2118
{
2219
protected function setUp()
2320
{
2421
if (!(ini_get('apc.enabled') && ini_get('apc.enable_cli'))) {
25-
$this->markTestSkipped('The apc extension is available, but not enabled.');
22+
$this->markTestSkipped('The apc extension is not enabled.');
2623
} else {
2724
apcu_clear_cache();
2825
}

0 commit comments

Comments
 (0)