diff options
author | Jakub Zalas <jakub@zalas.pl> | 2015-06-05 15:24:01 +0100 |
---|---|---|
committer | Jakub Zalas <jakub@zalas.pl> | 2015-06-05 15:24:01 +0100 |
commit | ff113695fd1a67fc6e7a2c2b53472aed6380cf71 (patch) | |
tree | bb7b294e3a6f8b3ed6a07f63ee578239503fc1ba | |
parent | 8915e9198f12f52529c384599d735974f43f2a6f (diff) | |
download | symfony-security-ff113695fd1a67fc6e7a2c2b53472aed6380cf71.zip symfony-security-ff113695fd1a67fc6e7a2c2b53472aed6380cf71.tar.gz symfony-security-ff113695fd1a67fc6e7a2c2b53472aed6380cf71.tar.bz2 |
[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.
-rw-r--r-- | Acl/Tests/Domain/ObjectIdentityTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Acl/Tests/Domain/ObjectIdentityTest.php b/Acl/Tests/Domain/ObjectIdentityTest.php index 325bb91..70f89a3 100644 --- a/Acl/Tests/Domain/ObjectIdentityTest.php +++ b/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()); } /** |