From d436a5d5d4202fc633b0fc635d2c8e28dff7c2cb Mon Sep 17 00:00:00 2001 From: Mattia Migliorini Date: Thu, 19 Mar 2026 11:41:13 +0100 Subject: [PATCH] Fix tests --- tests/TeamAssignment.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TeamAssignment.test.ts b/tests/TeamAssignment.test.ts index 9049fd5d8..aae0a5f53 100644 --- a/tests/TeamAssignment.test.ts +++ b/tests/TeamAssignment.test.ts @@ -172,7 +172,7 @@ 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); + return new PlayerInfo(name, PlayerType.Human, null, id, false, clan ?? null); }; const bot = (id: string): PlayerInfo =>