Signed-off-by: Joas Schilling <coding@schilljs.com>
@ -160,7 +160,7 @@ abstract class Base implements IProvider {
}
return [
'type' => 'group',
'type' => 'user-group',
'id' => $gid,
'name' => $this->groupDisplayNames[$gid],
];
@ -182,7 +182,7 @@ class BaseTest extends TestCase {
*/
public function testGenerateGroupParameter($gid) {
$this->assertEquals([
'name' => $gid,
], $this->invokePrivate($this->provider, 'generateGroupParameter', [$gid]));
@ -150,7 +150,7 @@ class Groups extends Base {