From 0345b91f653e166f289722c4387dea9da6fc1339 Mon Sep 17 00:00:00 2001 From: Slick Daddy <129640104+slick-daddy@users.noreply.github.com> Date: Sat, 9 May 2026 00:02:23 +0300 Subject: [PATCH] fix --- pkg/sqlite/setup_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/sqlite/setup_test.go b/pkg/sqlite/setup_test.go index 4ab310ee7..68febd07e 100644 --- a/pkg/sqlite/setup_test.go +++ b/pkg/sqlite/setup_test.go @@ -1521,7 +1521,8 @@ func createGroups(ctx context.Context, mqb models.GroupReaderWriter, n int, o in name = getGroupStringValue(index, name) group := models.Group{ - Name: name, + Name: name, + Aliases: getGroupStringValue(i, "Aliases"), URLs: models.NewRelatedStrings([]string{ getGroupEmptyString(i, urlField), }),