Browse Source

Fix phpunit.xml validation error.

ADmad 7 years ago
parent
commit
e9f73b8ccb
1 changed files with 6 additions and 8 deletions
  1. 6 8
      phpunit.xml.dist

+ 6 - 8
phpunit.xml.dist

@@ -8,14 +8,6 @@
     backupGlobals="true"
     >
 
-    <php>
-        <ini name="memory_limit" value="-1"/>
-        <ini name="apc.enable_cli" value="1"/>
-        <!-- E_ALL & ~E_USER_DEPRECATED (16383)-->
-        <!-- E_ALL (32767) -->
-        <ini name="error_reporting" value="32767"/>
-    </php>
-
     <testsuites>
         <testsuite name="cakephp">
             <directory>./tests/TestCase/</directory>
@@ -44,6 +36,12 @@
     </filter>
 
     <php>
+        <ini name="memory_limit" value="-1"/>
+        <ini name="apc.enable_cli" value="1"/>
+        <!-- E_ALL & ~E_USER_DEPRECATED (16383)-->
+        <!-- E_ALL (32767) -->
+        <ini name="error_reporting" value="32767"/>
+
         <!-- SQLite
         <env name="db_dsn" value="sqlite:///:memory:"/>
         -->