diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-09-25 11:20:50 +0200 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-09-25 11:20:50 +0200 |
commit | a99b4984c7212fa88858e26526e4d8e6d4af7a39 (patch) | |
tree | 70cb16fb4c2f711c8f0cc4382e3b24fa3c7594f2 | |
parent | 4a5dea2861a51b6b0f3c07dc541d9449882c44e1 (diff) | |
parent | db16d7ce3ea2faac274650a7c57ff49dde82f853 (diff) | |
download | symfony-security-a99b4984c7212fa88858e26526e4d8e6d4af7a39.zip symfony-security-a99b4984c7212fa88858e26526e4d8e6d4af7a39.tar.gz symfony-security-a99b4984c7212fa88858e26526e4d8e6d4af7a39.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
[Console] Fix transient HHVM test
[OptionsResolver] Fix catched exception along the dependency tree mistakenly detects cyclic dependencies
fixed tests
Fixing test locations
[VarDumper] Fix dump comparison on large arrays
[expression-language] Code Cleanup for GetAttrNode
-rw-r--r-- | Core/Tests/Authorization/Voter/AbstractVoterTest.php (renamed from Tests/Core/Authentication/Voter/AbstractVoterTest.php) | 4 | ||||
-rw-r--r-- | Core/Tests/LegacySecurityContextInterfaceTest.php (renamed from Tests/Core/LegacySecurityContextInterfaceTest.php) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Core/Authentication/Voter/AbstractVoterTest.php b/Core/Tests/Authorization/Voter/AbstractVoterTest.php index ecf82fb..4e38fd6 100644 --- a/Tests/Core/Authentication/Voter/AbstractVoterTest.php +++ b/Core/Tests/Authorization/Voter/AbstractVoterTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Core\Authentication\Voter; +namespace Symfony\Component\Security\Core\Tests\Authorization\Voter; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authorization\Voter\AbstractVoter; @@ -78,7 +78,7 @@ class VoterFixture extends AbstractVoter protected function getSupportedClasses() { return array( - 'Symfony\Component\Security\Tests\Core\Authentication\Voter\ObjectFixture', + 'Symfony\Component\Security\Core\Tests\Authorization\Voter\ObjectFixture', ); } diff --git a/Tests/Core/LegacySecurityContextInterfaceTest.php b/Core/Tests/LegacySecurityContextInterfaceTest.php index 5225eb5..a45ecf9 100644 --- a/Tests/Core/LegacySecurityContextInterfaceTest.php +++ b/Core/Tests/LegacySecurityContextInterfaceTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Core; +namespace Symfony\Component\Security\Core\Tests; use Symfony\Component\Security\Core\SecurityContextInterface; use Symfony\Component\Security\Core\Security; |