10000 minor #14882 [Security] Update tests after a merge (jakzal) · symfony/symfony@2fa3585 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2fa3585

Browse files
committed
minor #14882 [Security] Update tests after a merge (jakzal)
This PR was merged into the 2.6 branch. Discussion ---------- [Security] Update tests after a merge | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Security component was split into three and test fixture namespaces are different between 2.3 and 2.6 branches. Commits ------- 322f629 [Security] Update tests after a merge
2 parents c2ea763 + 322f629 commit 2fa3585

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Security/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)
0