test: fix addUserToGroup param

This commit is contained in:
Saw-jan
2024-11-25 16:59:11 +05:45
parent f4df2978ea
commit 73d89721c6

View File

@@ -800,7 +800,7 @@ class GraphContext implements Context {
* @return void
*/
public function theUserTriesToAddAnotherUserToGroupUsingTheGraphAPI(string $byUser, string $user, string $group): void {
$this->featureContext->setResponse($this->addUserToGroup($group, $byUser, $user));
$this->featureContext->setResponse($this->addUserToGroup($group, $user, $byUser));
}
/**