浏览代码

[Tests] updated invalid use statement

Johannes Schmitt 14 年之前
父节点
当前提交
fa0ef500ae
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tests/Symfony/Tests/Component/Security/Acl/Dbal/MutableAclProviderTest.php

+ 2 - 2
tests/Symfony/Tests/Component/Security/Acl/Dbal/MutableAclProviderTest.php

@@ -12,7 +12,7 @@
 namespace Symfony\Tests\Component\Security\Acl\Dbal;
 
 use Symfony\Component\Security\Acl\Domain\RoleSecurityIdentity;
-use Symfony\Component\Security\Acl\Model\FieldAwareEntryInterface;
+use Symfony\Component\Security\Acl\Model\FieldEntryInterface;
 use Symfony\Component\Security\Acl\Model\AuditableEntryInterface;
 use Symfony\Component\Security\Acl\Model\EntryInterface;
 use Symfony\Component\Security\Acl\Domain\Entry;
@@ -47,7 +47,7 @@ class MutableAclProviderTest extends \PHPUnit_Framework_TestCase
             self::assertSame($a->isAuditFailure(), $b->isAuditFailure());
         }
 
-        if ($a instanceof FieldAwareEntryInterface) {
+        if ($a instanceof FieldEntryInterface) {
             self::assertSame($a->getField(), $b->getField());
         }
     }