瀏覽代碼

[Tests] Skip MimeTypeTest if running as root

Joseph Bielawski 13 年之前
父節點
當前提交
205f524758
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/Symfony/Tests/Component/HttpFoundation/File/MimeType/MimeTypeTest.php

+ 1 - 1
tests/Symfony/Tests/Component/HttpFoundation/File/MimeType/MimeTypeTest.php

@@ -94,7 +94,7 @@ class MimeTypeTest extends \PHPUnit_Framework_TestCase
         touch($path);
         chmod($path, 0333);
 
-        if (substr(sprintf('%o', fileperms($path)), -4) == '0333') {
+        if (get_current_user() != 'root' && substr(sprintf('%o', fileperms($path)), -4) == '0333') {
             $this->setExpectedException('Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException');
             MimeTypeGuesser::getInstance()->guess($path);
         } else {