Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Commit 46be072

Browse files
committed
copy paste issues :D
1 parent a3256c6 commit 46be072

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/Service/RoleServiceTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public function testReturnTraversableRolesFromIdentityGiven(): void
7575

7676
$result = $roleService->getIdentityRoles($identity->reveal());
7777

78-
$this->assertCount(3, $result);
7978
$this->assertCount(3, $result);
8079
$this->assertInstanceOf(RoleInterface::class, $result[0]);
8180
$this->assertEquals($roles[0], $result[0]->getName());
@@ -94,7 +93,6 @@ public function testWillNotInvokeRoleProviderIfAllRolesCollected(): void
9493

9594
$result = $roleService->getIdentityRoles($identity);
9695

97-
$this->assertCount(3, $result);
9896
$this->assertCount(3, $result);
9997
$this->assertInstanceOf(RoleInterface::class, $result[0]);
10098
$this->assertEquals($roles, $result);
@@ -111,7 +109,6 @@ public function testWillCollectRolesOnlyIfRequired(): void
111109

112110
$result = $roleService->getIdentityRoles($identity);
113111

114-
$this->assertCount(3, $result);
115112
$this->assertCount(3, $result);
116113
$this->assertInstanceOf(RoleInterface::class, $result[0]);
117114

0 commit comments

Comments
 (0)