diff options
author | Christophe Coevoet <stof@notk.org> | 2015-09-26 21:22:35 +0200 |
---|---|---|
committer | Christophe Coevoet <stof@notk.org> | 2015-09-26 21:22:35 +0200 |
commit | 3679d74163401ee7e1362e42614f9fd2c9e1d9c4 (patch) | |
tree | b8f4fb6aac54dc3c452396e4cb79981c2b3bdeca /Core | |
parent | bca9aed679ce8e1add8f281318466018922641f9 (diff) | |
parent | e54bd400675de7076a80880b5f20cfc762856b65 (diff) | |
download | symfony-security-3679d74163401ee7e1362e42614f9fd2c9e1d9c4.zip symfony-security-3679d74163401ee7e1362e42614f9fd2c9e1d9c4.tar.gz symfony-security-3679d74163401ee7e1362e42614f9fd2c9e1d9c4.tar.bz2 |
minor #15923 Fix legacy security tests (stof)
This PR was merged into the 2.8 branch.
Discussion
----------
Fix legacy security tests
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | n/a
| License | MIT
| Doc PR | n/a
when merging legacy test classes together in #15893, use statements where not copied, making the tests fail.
Commits
-------
8b615bb Fix legacy security tests
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Tests/LegacySecurityContextTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Tests/LegacySecurityContextTest.php b/Core/Tests/LegacySecurityContextTest.php index 7db24e7..4502261 100644 --- a/Core/Tests/LegacySecurityContextTest.php +++ b/Core/Tests/LegacySecurityContextTest.php @@ -11,9 +11,9 @@ namespace Symfony\Component\Security\Core\Tests; -use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage; -use Symfony\Component\Security\Core\Authorization\AuthorizationChecker; +use Symfony\Component\Security\Core\Security; use Symfony\Component\Security\Core\SecurityContext; +use Symfony\Component\Security\Core\SecurityContextInterface; /** * @group legacy |