diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-12-17 11:40:05 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-12-17 11:40:05 +0100 |
commit | 8a7bf02f6038110dbf43a6c7dbf247acccac9817 (patch) | |
tree | 4718d2fdc2dfe60741b19e6226ff217635fefe97 /Core | |
parent | d97a78775c5df380551d5ba188216dd38d6628ab (diff) | |
download | symfony-security-8a7bf02f6038110dbf43a6c7dbf247acccac9817.zip symfony-security-8a7bf02f6038110dbf43a6c7dbf247acccac9817.tar.gz symfony-security-8a7bf02f6038110dbf43a6c7dbf247acccac9817.tar.bz2 |
[Security] Fix test
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Tests/Authorization/Voter/AbstractVoterTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Authorization/Voter/AbstractVoterTest.php b/Core/Tests/Authorization/Voter/AbstractVoterTest.php index 7c60007..69cfba3 100644 --- a/Core/Tests/Authorization/Voter/AbstractVoterTest.php +++ b/Core/Tests/Authorization/Voter/AbstractVoterTest.php @@ -122,7 +122,7 @@ class AbstractVoterTest extends \PHPUnit_Framework_TestCase */ public function testSupportsAttribute($expected, $attribute, $message) { - $voter = new AbstractVoterTest_Voter(); + $voter = new Fixtures\MyVoter(); $this->assertEquals($expected, $voter->supportsAttribute($attribute), $message); } |