From 3be9927135aa46ac131ffbce7d71d1b68a17250c Mon Sep 17 00:00:00 2001 From: AUGUSTIN_100 Date: Sun, 2 Oct 2022 23:18:03 +0200 Subject: [PATCH] =?UTF-8?q?Test=20Unitaire=20=C3=A9quipe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/BowlingLib/Model/Equipe.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/BowlingLib/Model/Equipe.cs b/Sources/BowlingLib/Model/Equipe.cs index 1ad3786..fb86f81 100644 --- a/Sources/BowlingLib/Model/Equipe.cs +++ b/Sources/BowlingLib/Model/Equipe.cs @@ -25,7 +25,7 @@ namespace BowlingLib.Model { this.nom = nom; - if ( joueurs != null && joueurs.Count > 0) + if ( joueurs != null && Joueurs.Count > 0) { foreach (Joueur nouv in joueurs) AjouterJoueur(nouv); }