瀏覽代碼

[Form] Tweak to FileTypeTest to avoid warning

Ryan Weaver 14 年之前
父節點
當前提交
66cc555bb1
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      tests/Symfony/Tests/Component/Form/Extension/Core/Type/FileTypeTest.php

+ 4 - 1
tests/Symfony/Tests/Component/Form/Extension/Core/Type/FileTypeTest.php

@@ -25,7 +25,10 @@ class FileTypeTest extends TypeTestCase
     public static function setUpBeforeClass()
     {
         self::$tmpDir = sys_get_temp_dir().DIRECTORY_SEPARATOR.'symfony-test';
-        mkdir(self::$tmpDir, 0777, true);
+
+        if (!file_exists(self::$tmpDir)) {
+            mkdir(self::$tmpDir, 0777, true);
+        }
     }
 
     protected function setUp()