Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtompset committed Jun 24, 2024
1 parent 85257e7 commit eeff34b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function testListMembersOnlyMember()
$members = $mockGoogleServiceDirectory->members->listMembers(
$groupEmailAddress,
[
'query' => 'roles=MEMBER'
'roles' => 'MEMBER'
]
);
} catch (Exception $exception) {
Expand All @@ -119,7 +119,7 @@ public function testListMembersOnlyOwner()
$members = $mockGoogleServiceDirectory->members->listMembers(
$groupEmailAddress,
[
'query' => 'roles=OWNER'
'roles' => 'OWNER'
]
);
} catch (Exception $exception) {
Expand Down

0 comments on commit eeff34b

Please sign in to comment.