diff options
Diffstat (limited to 'tests/lib/Group/Backend.php')
-rw-r--r-- | tests/lib/Group/Backend.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/lib/Group/Backend.php b/tests/lib/Group/Backend.php index 1b6bfe840f8..3c068d8d64b 100644 --- a/tests/lib/Group/Backend.php +++ b/tests/lib/Group/Backend.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -103,14 +104,14 @@ abstract class Backend extends \Test\TestCase { public function testSearchGroups(): void { $name1 = $this->getGroupName('foobarbaz'); - $name2 = $this->getGroupName('bazbarfoo'); + $name2 = $this->getGroupName('bazfoobarfoo'); $name3 = $this->getGroupName('notme'); $this->backend->createGroup($name1); $this->backend->createGroup($name2); $this->backend->createGroup($name3); - $result = $this->backend->getGroups('bar'); + $result = $this->backend->getGroups('foobar'); $this->assertSame(2, count($result)); } |