diff --git a/web/src/store/__tests__/participants.test.ts b/web/src/store/__tests__/participants.test.ts index 9796ed9..a04b4c0 100644 --- a/web/src/store/__tests__/participants.test.ts +++ b/web/src/store/__tests__/participants.test.ts @@ -41,7 +41,7 @@ describe("makeParticipant", () => { expect(guest.expectReply).toBe(true); }); it("marks the organizer as owner and keeps a status already given", () => { - const me = makeParticipant("john@linuxexperts.net", "John Coffey", "owner"); + const me = makeParticipant("john@example.org", "John Doe", "owner"); expect(me.roles).toEqual({ owner: true, attendee: true }); expect(me.participationStatus).toBe("accepted"); expect(me.expectReply).toBe(false);