fix: use timestamp-qualified name in csv dedup test

This commit is contained in:
2026-05-18 18:45:03 -07:00
parent a0872d07ef
commit 29292e697b
+1 -1
View File
@@ -201,7 +201,7 @@ test.describe('CSV Upload Player Deduplication', () => {
// Check that the existing player was updated (not duplicated) // Check that the existing player was updated (not duplicated)
const aggregatePlayers = await prisma.player.findMany({ const aggregatePlayers = await prisma.player.findMany({
where: { where: {
name: 'Aggregate Test', name: `Aggregate Test ${ts}`,
}, },
}); });