We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cddcbd1 + 79ca27f commit 451a843Copy full SHA for 451a843
tests/lib/Group/Backend.php
@@ -103,14 +103,14 @@ public function testUser(): void {
103
104
public function testSearchGroups(): void {
105
$name1 = $this->getGroupName('foobarbaz');
106
- $name2 = $this->getGroupName('bazbarfoo');
+ $name2 = $this->getGroupName('bazfoobarfoo');
107
$name3 = $this->getGroupName('notme');
108
109
$this->backend->createGroup($name1);
110
$this->backend->createGroup($name2);
111
$this->backend->createGroup($name3);
112
113
- $result = $this->backend->getGroups('bar');
+ $result = $this->backend->getGroups('foobar');
114
$this->assertSame(2, count($result));
115
}
116
0 commit comments