diff --git a/Qwirkle/TestBase/TestGame.cs b/Qwirkle/TestBase/TestGame.cs index be15f88..7ba4293 100644 --- a/Qwirkle/TestBase/TestGame.cs +++ b/Qwirkle/TestBase/TestGame.cs @@ -88,7 +88,7 @@ public class TestGame game.StartGame(); Assert.False(game.GameRunning); } - List playerstest = ["test", "test1"]; + List playerstest = [p1, p2]; game.AddPlayerInGame(playerstest); game.StartGame(); @@ -102,7 +102,7 @@ public class TestGame public void Test_GameGetPlayingPlayerPosition(bool result, string p1, string p2, string p3) { Game game = new Game(); - List playerstest = ["test", "test1", "test2"]; + List playerstest = [p1, p2, p3]; game.AddPlayerInGame(playerstest); if (!result)