Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit ff11369

Browse files
committed
[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.
1 parent 8915e91 commit ff11369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Acl/Tests/Domain/ObjectIdentityTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testFromDomainObjectWithoutInterfaceEnforcesStringIdentifier()
7171
$id = ObjectIdentity::fromDomainObject($domainObject);
7272

7373
$this->assertSame('1', $id->getIdentifier());
74-
$this->assertEquals('Symfony\Component\Security\Tests\Acl\Domain\TestDomainObject', $id->getType());
74+
$this->assertEquals('Symfony\Component\Security\Acl\Tests\Domain\TestDomainObject', $id->getType());
7575
}
7676

7777
public function testFromDomainObjectWithoutInterfaceAllowsZeroAsIdentifier()
@@ -81,7 +81,7 @@ public function testFromDomainObjectWithoutInterfaceAllowsZeroAsIdentifier()
8181
$id = ObjectIdentity::fromDomainObject($domainObject);
8282

8383
$this->assertSame('0', $id->getIdentifier());
84-
$this->assertEquals('Symfony\Component\Security\Tests\Acl\Domain\TestDomainObject', $id->getType());
84+
$this->assertEquals('Symfony\Component\Security\Acl\Tests\Domain\TestDomainObject', $id->getType());
8585
}
8686

8787
/**

0 commit comments

Comments
 (0)