From 4277b500ac1e43ab1b1d88fffc6c31b55f298538 Mon Sep 17 00:00:00 2001 From: Yaros Date: Thu, 11 Dec 2025 08:12:04 +0100 Subject: [PATCH] chore: update comment Co-authored-by: Daniel Dietzler <36593685+danieldietzler@users.noreply.github.com> --- e2e/src/api/specs/person.e2e-spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/src/api/specs/person.e2e-spec.ts b/e2e/src/api/specs/person.e2e-spec.ts index c4ed8dd1e6..b30fd2db30 100644 --- a/e2e/src/api/specs/person.e2e-spec.ts +++ b/e2e/src/api/specs/person.e2e-spec.ts @@ -144,7 +144,7 @@ describe('/people', () => { expect(status).toBe(200); expect(body.hasNextPage).toBe(false); - expect(body.total).toBe(10); // All persons + expect(body.total).toBe(10); // All people expect(body.hidden).toBe(1); // 'hidden_person' const people = body.people as PersonResponseDto[];