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

Commit 42f6478

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: [Security] Update tests after a merge [Console] Remove an unused argument and fix a small cs issue
2 parents 3cc16df + ff11369 commit 42f6478

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)