From 7516b094c0d5e37008d47b3cb588a1fffa2cd07e Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 22 Jan 2025 10:53:03 -0500 Subject: test: fix periodic `Test\Group\DatabaseTest::testSearchGroups` failure Signed-off-by: Josh --- tests/lib/Group/Backend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/lib/Group/Backend.php b/tests/lib/Group/Backend.php index 541ed78719b..70c3bcae7aa 100644 --- a/tests/lib/Group/Backend.php +++ b/tests/lib/Group/Backend.php @@ -122,14 +122,14 @@ abstract class Backend extends \Test\TestCase { public function testSearchGroups() { $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)); } -- cgit v1.2.3