diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-06-18 20:45:22 +0200 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-06-18 21:21:56 +0200 |
commit | a98ce20e9fe75a27039c6a52b9e9ca96aeb71aff (patch) | |
tree | 82e83b09a45c778e1ea5f2a5d9a5986265e228f4 /Core/Tests/LegacySecurityContextTest.php | |
parent | fd0b8b96fe220887ba93535742343df84078cd93 (diff) | |
download | symfony-security-a98ce20e9fe75a27039c6a52b9e9ca96aeb71aff.zip symfony-security-a98ce20e9fe75a27039c6a52b9e9ca96aeb71aff.tar.gz symfony-security-a98ce20e9fe75a27039c6a52b9e9ca96aeb71aff.tar.bz2 |
[PhpUnitBridge] Enforce @-silencing of deprecation notices according to new policy
Diffstat (limited to 'Core/Tests/LegacySecurityContextTest.php')
-rw-r--r-- | Core/Tests/LegacySecurityContextTest.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Core/Tests/LegacySecurityContextTest.php b/Core/Tests/LegacySecurityContextTest.php index f1f7861..c5da22d 100644 --- a/Core/Tests/LegacySecurityContextTest.php +++ b/Core/Tests/LegacySecurityContextTest.php @@ -26,8 +26,6 @@ class LegacySecurityContextTest extends \PHPUnit_Framework_TestCase protected function setUp() { - $this->iniSet('error_reporting', -1 & ~E_USER_DEPRECATED); - $this->tokenStorage = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface'); $this->authorizationChecker = $this->getMock('Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface'); $this->securityContext = new SecurityContext($this->tokenStorage, $this->authorizationChecker); |