From 29292e697b972ae0f670651735ddece2e4ef6932 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Mon, 18 May 2026 18:45:03 -0700 Subject: [PATCH] fix: use timestamp-qualified name in csv dedup test --- e2e/csv-upload-deduplication.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/csv-upload-deduplication.test.ts b/e2e/csv-upload-deduplication.test.ts index 7c48736..25b8208 100644 --- a/e2e/csv-upload-deduplication.test.ts +++ b/e2e/csv-upload-deduplication.test.ts @@ -201,7 +201,7 @@ test.describe('CSV Upload Player Deduplication', () => { // Check that the existing player was updated (not duplicated) const aggregatePlayers = await prisma.player.findMany({ where: { - name: 'Aggregate Test', + name: `Aggregate Test ${ts}`, }, });