From 968a98a5acb167fd80e6325385aba45e8d291cdc Mon Sep 17 00:00:00 2001 From: Mattia Migliorini Date: Thu, 19 Mar 2026 11:56:31 +0100 Subject: [PATCH] Fix prettier --- tests/TeamAssignment.test.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/TeamAssignment.test.ts b/tests/TeamAssignment.test.ts index aae0a5f53..204bd200b 100644 --- a/tests/TeamAssignment.test.ts +++ b/tests/TeamAssignment.test.ts @@ -172,7 +172,14 @@ describe("assignTeams", () => { describe("computeClanTeamName", () => { const human = (id: string, clan?: string): PlayerInfo => { const name = clan ? `[${clan}]Player${id}` : `Player${id}`; - return new PlayerInfo(name, PlayerType.Human, null, id, false, clan ?? null); + return new PlayerInfo( + name, + PlayerType.Human, + null, + id, + false, + clan ?? null, + ); }; const bot = (id: string): PlayerInfo =>