From 55b3bc999a57588e90ba90fba71052b83d919e3e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 14 Jul 2023 10:59:38 +0200 Subject: [PATCH] use a prime for seeding to allow testing of the pagination --- backend/src/db/seed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/db/seed.ts b/backend/src/db/seed.ts index cf3f43ee9..7286683dd 100644 --- a/backend/src/db/seed.ts +++ b/backend/src/db/seed.ts @@ -1619,7 +1619,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl'] }, }) - for (let i = 0; i < 30; i++) { + for (let i = 0; i < 29; i++) { authenticatedUser = await jennyRostock.toJson() await mutate({ mutation: createMessageMutation(),