Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bdovaz committed Jun 28, 2024
1 parent 9c78f7f commit d690e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/GroupManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public function testAssignUserToNonExistingGroups() {
$this->eventDispatcher->expects($this->exactly(2))
->method('dispatchTyped')
->withConsecutive(
[new BeforeGroupCreatedEvent('groupB')],
[new BeforeGroupCreatedEvent('SAML_groupB')],
[new GroupCreatedEvent($groupB)]
);
// assert user gets added to group
Expand Down Expand Up @@ -293,7 +293,7 @@ public function testAssignUserToGroupsWithCollision() {
$this->eventDispatcher->expects($this->exactly(2))
->method('dispatchTyped')
->withConsecutive(
[new BeforeGroupCreatedEvent('groupC')],
[new BeforeGroupCreatedEvent('SAML_groupC')],
[new GroupCreatedEvent($groupC)]
);
// assert user gets added to group
Expand Down

0 comments on commit d690e7e

Please sign in to comment.