Browse Source

Changing error message

José Lorenzo Rodríguez 10 years ago
parent
commit
a67a631a19
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Cache/Engine/ApcEngineTest.php

+ 1 - 1
tests/TestCase/Cache/Engine/ApcEngineTest.php

@@ -34,7 +34,7 @@ class ApcEngineTest extends TestCase
     public function setUp()
     {
         parent::setUp();
-        $this->skipIf(!function_exists('apcu_store'), 'Apc is not installed or configured properly.');
+        $this->skipIf(!function_exists('apcu_store'), 'APCu is not installed or configured properly.');
 
         if ((PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg')) {
             $this->skipIf(!ini_get('apc.enable_cli'), 'APC is not enabled for the CLI.');