From 2883d40becf069b70d897b8abba38b5667820da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Mon, 2 Oct 2023 11:44:26 +0100 Subject: [PATCH] fix(e2e): Fix incorrect dummy emails in api-driven tests --- e2e/tests/api-driven/src/permissions/helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/tests/api-driven/src/permissions/helpers.ts b/e2e/tests/api-driven/src/permissions/helpers.ts index aefdd32c57..0f6d829a28 100644 --- a/e2e/tests/api-driven/src/permissions/helpers.ts +++ b/e2e/tests/api-driven/src/permissions/helpers.ts @@ -29,7 +29,7 @@ export const cleanup = async () => { export const setup = async () => { const user1Id = await createUser({ - email: "team1-teamEditor-user@example.com@example.com", + email: "team1-teamEditor-user@example.com", }); const teamId1 = await createTeam({ name: "E2E Team 1", slug: "e2e-team1" }); const team1FlowId = await createFlow({ @@ -38,7 +38,7 @@ export const setup = async () => { }); const user2Id = await createUser({ - email: "team2-teamEditor-user@example.com@example.com", + email: "team2-teamEditor-user@example.com", }); const teamId2 = await createTeam({ name: "E2E Team 2", slug: "e2e-team2" }); const team2FlowId = await createFlow({