Sfoglia il codice sorgente

[Config] fixed a test

Fabien Potencier 14 anni fa
parent
commit
03282f8d4e

+ 1 - 1
tests/Symfony/Tests/Component/Config/Resource/DirectoryResourceTest.php

@@ -56,7 +56,7 @@ class DirectoryResourceTest extends \PHPUnit_Framework_TestCase
      */
     public function testGetResource()
     {
-        $this->assertEquals(realpath($this->directory), $this->resource->getResource(), '->getResource() returns the path to the resource');
+        $this->assertEquals($this->directory, $this->resource->getResource(), '->getResource() returns the path to the resource');
     }
 
     /**