diff options
Diffstat (limited to 'Core/phpunit.xml.dist')
-rw-r--r-- | Core/phpunit.xml.dist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Core/phpunit.xml.dist b/Core/phpunit.xml.dist index 7bdf5cb..7a5f7da 100644 --- a/Core/phpunit.xml.dist +++ b/Core/phpunit.xml.dist @@ -12,9 +12,11 @@ bootstrap="vendor/autoload.php" > <php> - <!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) --> + <!-- Disable E_USER_DEPRECATED until 3.0 --> + <!-- php -r 'echo -1 & ~E_USER_DEPRECATED;' --> <ini name="error_reporting" value="-16385"/> </php> + <testsuites> <testsuite name="Symfony Security Component Core Test Suite"> <directory>./Tests/</directory> |