From 322f6290204b98b847b7cd0402e6a226e260307c Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Fri, 5 Jun 2015 15:24:01 +0100 Subject: [PATCH] [Security] Update tests after a merge Security component was split into three and test fixture namespaces are different between 2.3 and 2.6 branches. --- .../Security/Acl/Tests/Domain/ObjectIdentityTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Security/Acl/Tests/Domain/ObjectIdentityTest.php b/src/Symfony/Component/Security/Acl/Tests/Domain/ObjectIdentityTest.php index 325bb910b3..70f89a3254 100644 --- a/src/Symfony/Component/Security/Acl/Tests/Domain/ObjectIdentityTest.php +++ b/src/Symfony/Component/Security/Acl/Tests/Domain/ObjectIdentityTest.php @@ -71,7 +71,7 @@ namespace Symfony\Component\Security\Acl\Tests\Domain $id = ObjectIdentity::fromDomainObject($domainObject); $this->assertSame('1', $id->getIdentifier()); - $this->assertEquals('Symfony\Component\Security\Tests\Acl\Domain\TestDomainObject', $id->getType()); + $this->assertEquals('Symfony\Component\Security\Acl\Tests\Domain\TestDomainObject', $id->getType()); } public function testFromDomainObjectWithoutInterfaceAllowsZeroAsIdentifier() @@ -81,7 +81,7 @@ namespace Symfony\Component\Security\Acl\Tests\Domain $id = ObjectIdentity::fromDomainObject($domainObject); $this->assertSame('0', $id->getIdentifier()); - $this->assertEquals('Symfony\Component\Security\Tests\Acl\Domain\TestDomainObject', $id->getType()); + $this->assertEquals('Symfony\Component\Security\Acl\Tests\Domain\TestDomainObject', $id->getType()); } /**